fix for mantis 357

This commit is contained in:
Jeff Hill
2009-07-31 19:47:46 +00:00
parent 4e5fa9b6b3
commit 913f724ebf
+1 -1
View File
@@ -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 ();
}
}