http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53b9a53
)
quartz: Replace second EnterCriticalSection with LeaveCriticalSection (Smatch).
author
Michael Stefaniuc
<mstefani@redhat.de>
Thu, 20 Mar 2008 20:15:27 +0000
(21:15 +0100)
committer
Alexandre Julliard
<julliard@winehq.org>
Fri, 21 Mar 2008 10:23:18 +0000
(11:23 +0100)
dlls/quartz/control.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/quartz/control.c
b/dlls/quartz/control.c
index 5cfa313bede73246855e1b800b1aef37f9e158d0..6b22bf4143f7c7c14639d27aa011377b98b5297c 100644
(file)
--- a/
dlls/quartz/control.c
+++ b/
dlls/quartz/control.c
@@
-400,7
+400,7
@@
HRESULT WINAPI MediaSeekingImpl_GetAvailable(IMediaSeeking * iface, LONGLONG * p
EnterCriticalSection(This->crst);
*pEarliest = 0;
*pLatest = This->llDuration;
-
Enter
CriticalSection(This->crst);
+
Leave
CriticalSection(This->crst);
return S_OK;
}