Browse Source

Fix crash-at-shutdown if exiting before initializing wallet

0.8
Gavin Andresen 12 years ago
parent
commit
dbc6dea1b2
  1. 1
      src/init.cpp

1
src/init.cpp

@ -100,6 +100,7 @@ void Shutdown() @@ -100,6 +100,7 @@ void Shutdown()
StopNode();
{
LOCK(cs_main);
if (pwalletMain)
pwalletMain->SetBestChain(CBlockLocator(pindexBest));
if (pblocktree)
pblocktree->Flush();

Loading…
Cancel
Save