Commit d8c055e6 authored by Rich Prohaska's avatar Rich Prohaska

#223 fix memory leak in the ft/cachetable-checkpointer-class test

parent 81fa04fc
......@@ -165,6 +165,7 @@ void checkpointer_test::test_begin_checkpoint() {
}
ctbl.list.destroy();
m_cp.destroy();
cfl.destroy();
}
//------------------------------------------------------------------------------
......@@ -257,6 +258,7 @@ void checkpointer_test::test_pending_bits() {
ctbl.list.destroy();
m_cp.destroy();
cfl.destroy();
}
//------------------------------------------------------------------------------
......@@ -394,6 +396,7 @@ void checkpointer_test::test_end_checkpoint() {
}
m_cp.destroy();
ctbl.list.destroy();
cfl.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