Locking fix for AlreadyHave()
Access to mapTransactions[] must be guarded by cs_mapTransactions lock. Also, reformat long lines to make the switch statement more readable.
This commit is contained in:
parent
6b8e7eefcc
commit
8deb9822e4
13
src/main.cpp
13
src/main.cpp
@ -2137,8 +2137,17 @@ bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
|
|||||||
{
|
{
|
||||||
switch (inv.type)
|
switch (inv.type)
|
||||||
{
|
{
|
||||||
case MSG_TX: return mapTransactions.count(inv.hash) || mapOrphanTransactions.count(inv.hash) || txdb.ContainsTx(inv.hash);
|
case MSG_TX:
|
||||||
case MSG_BLOCK: return mapBlockIndex.count(inv.hash) || mapOrphanBlocks.count(inv.hash);
|
{
|
||||||
|
LOCK(cs_mapTransactions);
|
||||||
|
return mapTransactions.count(inv.hash) ||
|
||||||
|
mapOrphanTransactions.count(inv.hash) ||
|
||||||
|
txdb.ContainsTx(inv.hash);
|
||||||
|
}
|
||||||
|
|
||||||
|
case MSG_BLOCK:
|
||||||
|
return mapBlockIndex.count(inv.hash) ||
|
||||||
|
mapOrphanBlocks.count(inv.hash);
|
||||||
}
|
}
|
||||||
// Don't know what it is, just say we already got one
|
// Don't know what it is, just say we already got one
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user