Fix segfault crash when shutdown the GUI in disablewallet mode

Github-Pull: #9817
Rebased-From: 312c4f1057
This commit is contained in:
Jonas Schnelli
2017-02-21 14:36:36 +01:00
committed by Wladimir J. van der Laan
parent 59c37ae55a
commit c6811c1bd3

View File

@@ -499,7 +499,10 @@ void BitcoinGUI::setClientModel(ClientModel *clientModel)
// Propagate cleared model to child objects
rpcConsole->setClientModel(nullptr);
#ifdef ENABLE_WALLET
walletFrame->setClientModel(nullptr);
if (walletFrame)
{
walletFrame->setClientModel(nullptr);
}
#endif // ENABLE_WALLET
unitDisplayControl->setOptionsModel(nullptr);
}