Commit 98e30069 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

winejack.drv: Fix missing unlock. Found by Smatch.

parent d6c2e6f0
......@@ -1805,7 +1805,8 @@ int JACK_callback_wwi (nframes_t nframes, void *arg)
#if JACK_CLOSE_HACK
if(wwi->in_use == FALSE)
{
/* do nothing if nothing is being recorded */
/* do nothing if nothing is being recorded */
LeaveCriticalSection(&wwi->access_crst);
return 0;
}
#endif
......
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