Commit d7b7d480 authored by unknown's avatar unknown

BUG#19318 valgrind: memory leak in ndb_mgmd

now deal with memory correctly during ConfigInfo construction (due to previous changes)


ndb/src/mgmsrv/ConfigInfo.cpp:
  Correctly deal with memory during ConfigInfo construction
parent b8493cd6
......@@ -2229,11 +2229,11 @@ ConfigInfo::ConfigInfo()
if (!m_info.getCopy(param._section, &section)) {
Properties newsection(true);
m_info.put(param._section, &newsection);
// Get copy of section
m_info.getCopy(param._section, &section);
}
// Get copy of section
m_info.getCopy(param._section, &section);
// Create pinfo (parameter info) entry
Properties pinfo(true);
pinfo.put("Id", param._paramId);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment