Added checks for null pointers in Shutdown

Estetics
pull/59/head
tucenaber 12 years ago committed by Pieter Wuille
parent 344620e953
commit 3026baaa7c

@ -78,8 +78,10 @@ void Shutdown(void* parg)
StopNode();
{
LOCK(cs_main);
pcoinsTip->Flush();
pblocktree->Flush();
if (pcoinsTip)
pcoinsTip->Flush();
if (pblocktree)
pblocktree->Flush();
delete pcoinsTip;
delete pcoinsdbview;
delete pblocktree;

Loading…
Cancel
Save