Merge #9507: Fix use-after-free in CTxMemPool::removeConflicts()
fe7e593
Fix use-after-free in CTxMemPool::removeConflicts() (Suhas Daftuar)
This commit is contained in:
commit
05950427d3
1 changed files with 1 additions and 1 deletions
|
@ -581,8 +581,8 @@ void CTxMemPool::removeConflicts(const CTransaction &tx)
|
||||||
const CTransaction &txConflict = *it->second;
|
const CTransaction &txConflict = *it->second;
|
||||||
if (txConflict != tx)
|
if (txConflict != tx)
|
||||||
{
|
{
|
||||||
removeRecursive(txConflict);
|
|
||||||
ClearPrioritisation(txConflict.GetHash());
|
ClearPrioritisation(txConflict.GetHash());
|
||||||
|
removeRecursive(txConflict);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue