Skip to content
Snippets Groups Projects
Commit c78d5f5e authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

ITS#697: Fix cond_wait

parent 66290935
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,6 @@ int
ldap_pvt_thread_cond_wait( ldap_pvt_thread_cond_t *cond,
ldap_pvt_thread_mutex_t *mutex )
{
ReleaseMutex( *mutex );
SignalObjectAndWait( *mutex, *cond, INFINITE, FALSE );
WaitForSingleObject( *mutex, INFINITE );
return( 0 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment