blockchain: don't leave dangling pointers in this

This commit is contained in:
moneromooo-monero 2017-12-13 18:44:18 +00:00
parent 8e60b81c48
commit b1634aa3e8
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 2 additions and 0 deletions

View File

@ -490,7 +490,9 @@ bool Blockchain::deinit()
}
delete m_hardfork;
m_hardfork = NULL;
delete m_db;
m_db = NULL;
return true;
}
//------------------------------------------------------------------