Fix segfault crash when shutdown the GUI in disablewallet mode

Github-Pull: #9817
Rebased-From: 312c4f10574ccf6dfe0d4ecb3ce928733d3a1e52
This commit is contained in:
Jonas Schnelli 2017-02-21 14:36:36 +01:00 committed by Adrian Gallagher
parent 3a39709414
commit 19217d9d3f

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);
}