summaryrefslogtreecommitdiff
path: root/ndb
diff options
context:
space:
mode:
authorstewart@mysql.com <>2006-06-08 02:31:58 +1000
committerstewart@mysql.com <>2006-06-08 02:31:58 +1000
commite84359f342b8d67e63fb7220e3275ce27088f23f (patch)
treef8b4deec1d6203dc175bb8ba4aa6557f071b44dd /ndb
parent454cea637783ab2686799ded84d4893025f20159 (diff)
downloadmariadb-git-e84359f342b8d67e63fb7220e3275ce27088f23f.tar.gz
BUG#19318 valgrind: memory leak in ndb_mgmd
fix based on review
Diffstat (limited to 'ndb')
-rw-r--r--ndb/src/mgmsrv/ConfigInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/src/mgmsrv/ConfigInfo.cpp b/ndb/src/mgmsrv/ConfigInfo.cpp
index 1466ae2e0f5..2673aecf31b 100644
--- a/ndb/src/mgmsrv/ConfigInfo.cpp
+++ b/ndb/src/mgmsrv/ConfigInfo.cpp
@@ -2287,6 +2287,7 @@ ConfigInfo::ConfigInfo()
// Replace section with modified section
m_info.put(param._section, section, true);
+ delete section;
if(param._type != ConfigInfo::CI_SECTION){
Properties * p;
@@ -2344,7 +2345,6 @@ ConfigInfo::ConfigInfo()
ndbout << "Edit file " << __FILE__ << "." << endl;
require(false);
}
- delete section;
}
}