aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2012-04-17 11:05:02 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2012-04-17 11:05:02 -0700
commitcaeddc5d3738c95e0755560aa3d9b1f32e9fbce5 (patch)
treeab6df15302cd3c818e45e6f19330b044db988a94 /src/main.cpp
parent1ffeb89a52d82bb62860786ff6426224437ca7b1 (diff)
parentc581cc16bb5e490c0960ccf440de2d1e5f23c417 (diff)
downloadbitcoin-caeddc5d3738c95e0755560aa3d9b1f32e9fbce5.tar.xz
Merge pull request #1117 from sipa/deadlockfix
Fix potential deadlock
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 16a1f34556..46b409cdaa 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2838,8 +2838,8 @@ bool ProcessMessages(CNode* pfrom)
bool SendMessages(CNode* pto, bool fSendTrickle)
{
- {
- LOCK(cs_main);
+ TRY_LOCK(cs_main, lockMain);
+ if (lockMain) {
// Don't send anything until we get their version message
if (pto->nVersion == 0)
return true;