mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-19 16:13:55 +02:00
avoid dangling pointers in destructor
This commit is contained in:
parent
2ca2376d45
commit
023d96bc3e
@ -600,7 +600,9 @@ Wallet::~Wallet()
|
|||||||
qDebug("~Wallet: Closing wallet");
|
qDebug("~Wallet: Closing wallet");
|
||||||
|
|
||||||
delete m_history;
|
delete m_history;
|
||||||
|
m_history = NULL;
|
||||||
//Monero::WalletManagerFactory::getWalletManager()->closeWallet(m_walletImpl);
|
//Monero::WalletManagerFactory::getWalletManager()->closeWallet(m_walletImpl);
|
||||||
delete m_walletImpl;
|
delete m_walletImpl;
|
||||||
|
m_walletImpl = NULL;
|
||||||
qDebug("m_walletImpl deleted");
|
qDebug("m_walletImpl deleted");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user