mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-30 10:42:23 +02:00
Fix segfault crash when shutdown the GUI in disablewallet mode
This commit is contained in:
@ -518,7 +518,10 @@ void BitcoinGUI::setClientModel(ClientModel *_clientModel)
|
|||||||
// Propagate cleared model to child objects
|
// Propagate cleared model to child objects
|
||||||
rpcConsole->setClientModel(nullptr);
|
rpcConsole->setClientModel(nullptr);
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
|
if (walletFrame)
|
||||||
|
{
|
||||||
walletFrame->setClientModel(nullptr);
|
walletFrame->setClientModel(nullptr);
|
||||||
|
}
|
||||||
#endif // ENABLE_WALLET
|
#endif // ENABLE_WALLET
|
||||||
unitDisplayControl->setOptionsModel(nullptr);
|
unitDisplayControl->setOptionsModel(nullptr);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user