Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
ebbff7ee
Commit
ebbff7ee
authored
Apr 25, 2006
by
stewart@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#19340 small leak in ndbd
small cleanup fixes in kernel/vm/Configuration
parent
051e6ac9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
ndb/src/kernel/vm/Configuration.cpp
ndb/src/kernel/vm/Configuration.cpp
+8
-0
No files found.
ndb/src/kernel/vm/Configuration.cpp
View file @
ebbff7ee
...
...
@@ -210,9 +210,13 @@ Configuration::Configuration()
m_config_retriever
=
0
;
m_clusterConfig
=
0
;
m_clusterConfigIter
=
0
;
m_logLevel
=
0
;
}
Configuration
::~
Configuration
(){
if
(
opt_connect_str
)
free
(
_connectString
);
if
(
_programName
!=
NULL
)
free
(
_programName
);
...
...
@@ -225,6 +229,10 @@ Configuration::~Configuration(){
if
(
m_config_retriever
)
{
delete
m_config_retriever
;
}
if
(
m_logLevel
)
{
delete
m_logLevel
;
}
}
void
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment