mirror of
https://github.com/monero-project/monero.git
synced 2026-06-12 19:11:36 -07:00
tx_pool: fix use-after-free in prune()
- txid was a reference to an item which was later deleted in remove_tx_from_transient_lists(), and txid was used after that
This commit is contained in:
@@ -416,7 +416,7 @@ namespace cryptonote
|
||||
break;
|
||||
try
|
||||
{
|
||||
const crypto::hash &txid = it->second;
|
||||
const crypto::hash txid = it->second;
|
||||
txpool_tx_meta_t meta;
|
||||
if (!m_blockchain.get_txpool_tx_meta(txid, meta))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user