>From 475ba3849dd6563ce7b70c4db4d0ac85ac83658d Mon Sep 17 00:00:00 2001 From: Martin Sustrik <[email protected]> Date: Mon, 4 Apr 2011 12:49:39 +0200 Subject: [PATCH] Issue with error checking on Win32 platform fixed
Signed-off-by: Martin Sustrik <[email protected]> --- src/thread.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/thread.cpp b/src/thread.cpp index f1fd519..7bf9df0 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -48,7 +48,7 @@ void zmq::thread_t::stop () DWORD rc = WaitForSingleObject (descriptor, INFINITE); win_assert (rc != WAIT_FAILED); BOOL rc2 = CloseHandle (descriptor); - win_assert (rc != 0); + win_assert (rc2 != 0); } #else -- 1.7.0.4
_______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
