Remove redundant nullptr checks before deallocation

Rationale:
* delete ptr is a no-op if ptr is nullptr
This commit is contained in:
practicalswift
2017-06-28 23:14:48 +02:00
parent 140de14a12
commit b109a1c396
3 changed files with 3 additions and 6 deletions

View File

@@ -2753,8 +2753,7 @@ CNode::~CNode()
{
CloseSocket(hSocket);
if (pfilter)
delete pfilter;
delete pfilter;
}
void CNode::AskFor(const CInv& inv)