Commit 6ae786ec authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

quartz: Replace second EnterCriticalSection with LeaveCriticalSection (Smatch).

parent 53b9a53c
......@@ -400,7 +400,7 @@ HRESULT WINAPI MediaSeekingImpl_GetAvailable(IMediaSeeking * iface, LONGLONG * p
EnterCriticalSection(This->crst);
*pEarliest = 0;
*pLatest = This->llDuration;
EnterCriticalSection(This->crst);
LeaveCriticalSection(This->crst);
return S_OK;
}
......
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