From 49ccf53e8eb8fbce7edb0172b11f4e4c1334ccc8 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 8 Jun 2006 02:31:58 +1000 Subject: [PATCH] BUG#19318 valgrind: memory leak in ndb_mgmd fix based on review ndb/src/mgmsrv/ConfigInfo.cpp: move delete to more appropriate places inside loop. --- ndb/src/mgmsrv/ConfigInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }