mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-29 02:11:24 +02:00
Fix use-after-free in CTxMemPool::removeConflicts()
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user