mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-13 11:25:02 -05:00
Remove redundant nullptr checks before deallocation
Rationale: * delete ptr is a no-op if ptr is nullptr
This commit is contained in:
parent
140de14a12
commit
b109a1c396
3 changed files with 3 additions and 6 deletions
|
@ -2753,7 +2753,6 @@ CNode::~CNode()
|
||||||
{
|
{
|
||||||
CloseSocket(hSocket);
|
CloseSocket(hSocket);
|
||||||
|
|
||||||
if (pfilter)
|
|
||||||
delete pfilter;
|
delete pfilter;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -194,7 +194,6 @@ bool PaymentRequestPlus::getMerchant(X509_STORE* certStore, QString& merchant) c
|
||||||
qWarning() << "PaymentRequestPlus::getMerchant: SSL error: " << err.what();
|
qWarning() << "PaymentRequestPlus::getMerchant: SSL error: " << err.what();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (website)
|
|
||||||
delete[] website;
|
delete[] website;
|
||||||
X509_STORE_CTX_free(store_ctx);
|
X509_STORE_CTX_free(store_ctx);
|
||||||
for (unsigned int i = 0; i < certs.size(); i++)
|
for (unsigned int i = 0; i < certs.size(); i++)
|
||||||
|
|
|
@ -364,7 +364,6 @@ void PaymentServer::initNetManager()
|
||||||
{
|
{
|
||||||
if (!optionsModel)
|
if (!optionsModel)
|
||||||
return;
|
return;
|
||||||
if (netManager != nullptr)
|
|
||||||
delete netManager;
|
delete netManager;
|
||||||
|
|
||||||
// netManager is used to fetch paymentrequests given in bitcoin: URIs
|
// netManager is used to fetch paymentrequests given in bitcoin: URIs
|
||||||
|
|
Loading…
Add table
Reference in a new issue