Commit de139491 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

webservices: Set event handles to NULL on error.

parent a808821d
......@@ -166,8 +166,11 @@ static HRESULT start_queue( struct queue *queue )
error:
CloseHandle( queue->wait );
queue->wait = NULL;
CloseHandle( queue->cancel );
queue->cancel = NULL;
CloseHandle( queue->ready );
queue->ready = NULL;
return hr;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment