quartz: Replace second EnterCriticalSection with LeaveCriticalSection (Smatch).

This commit is contained in:
Michael Stefaniuc 2008-03-20 21:15:27 +01:00 committed by Alexandre Julliard
parent 53b9a53c27
commit 6ae786ec62
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}