mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
Added checks for null pointers in Shutdown
Estetics
This commit is contained in:
parent
344620e953
commit
3026baaa7c
1 changed files with 4 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue