mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 18:09:47 +01:00
Require CBlockIndex::RaiseValidity() to hold cs_main
This commit is contained in:
parent
8ef457cb83
commit
e9f3aa5f6a
@ -328,8 +328,9 @@ public:
|
||||
|
||||
//! Raise the validity level of this block index entry.
|
||||
//! Returns true if the validity was changed.
|
||||
bool RaiseValidity(enum BlockStatus nUpTo)
|
||||
bool RaiseValidity(enum BlockStatus nUpTo) EXCLUSIVE_LOCKS_REQUIRED(::cs_main)
|
||||
{
|
||||
AssertLockHeld(::cs_main);
|
||||
assert(!(nUpTo & ~BLOCK_VALID_MASK)); // Only validity flags allowed.
|
||||
if (nStatus & BLOCK_FAILED_MASK) return false;
|
||||
|
||||
|
@ -58,7 +58,7 @@ FUZZ_TARGET(chain)
|
||||
if (block_status & ~BLOCK_VALID_MASK) {
|
||||
continue;
|
||||
}
|
||||
(void)disk_block_index->RaiseValidity(block_status);
|
||||
WITH_LOCK(::cs_main, (void)disk_block_index->RaiseValidity(block_status));
|
||||
}
|
||||
|
||||
CBlockIndex block_index{block_header};
|
||||
|
Loading…
Reference in New Issue
Block a user