mirror of
https://github.com/zeromq/libzmq.git
synced 2025-02-20 14:24:38 +01:00
Issue with error checking on Win32 platform fixed
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
This commit is contained in:
parent
1842628b90
commit
475ba3849d
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user