diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-04-23 17:05:36 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-04-23 17:06:28 +0200 |
| commit | 89bbd54fbfbb1b21257d436731868455821a101e (patch) | |
| tree | a394f051221cb79d684d5643855597187fabc210 /src/main.cpp | |
| parent | Merge pull request #4055 (diff) | |
| parent | Add missing AssertLockHeld in ConnectBlock (diff) | |
| download | discoin-89bbd54fbfbb1b21257d436731868455821a101e.tar.xz discoin-89bbd54fbfbb1b21257d436731868455821a101e.zip | |
Merge pull request #4085
b39a07d Add missing AssertLockHeld in ConnectBlock (Wladimir J. van der Laan)
41106a5 qt: get required locks upfront in polling functions (Wladimir J. van der Laan)
ed67100 Add required locks in tests (Wladimir J. van der Laan)
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0bbe83370..a591168c0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1727,6 +1727,7 @@ void ThreadScriptCheck() { bool ConnectBlock(CBlock& block, CValidationState& state, CBlockIndex* pindex, CCoinsViewCache& view, bool fJustCheck) { + AssertLockHeld(cs_main); // Check it again in case a previous version let a bad block in if (!CheckBlock(block, state, !fJustCheck, !fJustCheck)) return false; |