diff options
| author | Matt Corallo <[email protected]> | 2017-02-02 20:03:46 -0500 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2017-02-02 20:03:46 -0500 |
| commit | fd13eca147be80f3ebd1a5a1db1ce75bbeeb1953 (patch) | |
| tree | 20264c24f6a72441d97670f977f9a8cc86ed89aa /src/net.cpp | |
| parent | Merge #9654: Add jtimon pgp keys for commit sigs and future gitian builds (diff) | |
| download | discoin-fd13eca147be80f3ebd1a5a1db1ce75bbeeb1953.tar.xz discoin-fd13eca147be80f3ebd1a5a1db1ce75bbeeb1953.zip | |
Lock cs_vSend and cs_inventory in a consistent order even in TRY
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/net.cpp b/src/net.cpp index df88b12c7..5cddc6f44 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1070,12 +1070,13 @@ void CConnman::ThreadSocketHandler() { bool fDelete = false; { - TRY_LOCK(pnode->cs_vSend, lockSend); - if (lockSend) + TRY_LOCK(pnode->cs_inventory, lockInv); + if (lockInv) { - TRY_LOCK(pnode->cs_inventory, lockInv); - if (lockInv) - fDelete = true; + TRY_LOCK(pnode->cs_vSend, lockSend); + if (lockSend) { + fDelete = true; + } } } if (fDelete) |