0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

Fix use-after-free in CTxMemPool::removeConflicts()

This commit is contained in:
Suhas Daftuar 2017-01-10 15:21:21 -05:00
parent 07fd147b9f
commit fe7e593b24

View file

@ -581,8 +581,8 @@ void CTxMemPool::removeConflicts(const CTransaction &tx)
const CTransaction &txConflict = *it->second;
if (txConflict != tx)
{
removeRecursive(txConflict);
ClearPrioritisation(txConflict.GetHash());
removeRecursive(txConflict);
}
}
}