Commit 1a72428a authored by unknown's avatar unknown

BUG#18881 valgrind: kernel memory leak in vm/Emulator.cpp


ndb/src/kernel/vm/Emulator.cpp:
  destroy theShutdownMutex in the destructor
parent 00cfd1a7
......@@ -106,6 +106,7 @@ EmulatorData::destroy(){
delete theSimBlockList; theSimBlockList = 0;
if(m_socket_server)
delete m_socket_server; m_socket_server = 0;
NdbMutex_Destroy(theShutdownMutex);
NdbMem_Destroy();
}
......
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