From 913f724ebfdd192cef77258ba2314b8e06152133 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Fri, 31 Jul 2009 19:47:46 +0000 Subject: [PATCH] fix for mantis 357 --- src/ca/tcpiiu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ca/tcpiiu.cpp b/src/ca/tcpiiu.cpp index 6ba03a751..e96dbd38e 100644 --- a/src/ca/tcpiiu.cpp +++ b/src/ca/tcpiiu.cpp @@ -1694,7 +1694,7 @@ void tcpiiu::decrementBlockingForFlushCount ( guard.assertIdenticalMutex ( this->mutex ); assert ( this->blockingForFlush > 0u ); this->blockingForFlush--; - if ( this->blockingForFlush == 0 ) { + if ( this->blockingForFlush > 0 ) { this->flushBlockEvent.signal (); } }