Browse Source

Set to nullptr after delete

0.15
practicalswift 8 years ago
parent
commit
d93b97fbcf
  1. 1
      src/httpserver.cpp
  2. 2
      src/test/dbwrapper_tests.cpp

1
src/httpserver.cpp

@ -482,6 +482,7 @@ void StopHTTPServer() @@ -482,6 +482,7 @@ void StopHTTPServer()
LogPrint("http", "Waiting for HTTP worker threads to exit\n");
workQueue->WaitExit();
delete workQueue;
workQueue = nullptr;
}
if (eventBase) {
LogPrint("http", "Waiting for HTTP event thread to exit\n");

2
src/test/dbwrapper_tests.cpp

@ -141,6 +141,7 @@ BOOST_AUTO_TEST_CASE(existing_data_no_obfuscate) @@ -141,6 +141,7 @@ BOOST_AUTO_TEST_CASE(existing_data_no_obfuscate)
// Call the destructor to free leveldb LOCK
delete dbw;
dbw = nullptr;
// Now, set up another wrapper that wants to obfuscate the same directory
CDBWrapper odbw(ph, (1 << 10), false, false, true);
@ -182,6 +183,7 @@ BOOST_AUTO_TEST_CASE(existing_data_reindex) @@ -182,6 +183,7 @@ BOOST_AUTO_TEST_CASE(existing_data_reindex)
// Call the destructor to free leveldb LOCK
delete dbw;
dbw = nullptr;
// Simulate a -reindex by wiping the existing data store
CDBWrapper odbw(ph, (1 << 10), false, true, true);

Loading…
Cancel
Save