commit | ca97f7fd26b8b7463112deb9c2be24abcf4b0325 | [log] [tgz] |
---|---|---|
author | Michael Stefaniuc <mstefani@redhat.com> | Mon Apr 05 20:16:35 2004 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Mon Apr 05 20:16:35 2004 +0000 |
tree | 0414b35d8b23162bc01fd99fdfda5054f7dd703f | |
parent | 30dbb04998cdc26478ceb3520eb582911fddac05 [diff] |
Fix cut'n'paste error: leave the CriticalSection not enter it again (found by smatch).
diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c index 4c3f6c0..edba57e 100644 --- a/dlls/quartz/filtergraph.c +++ b/dlls/quartz/filtergraph.c
@@ -2402,7 +2402,7 @@ PostMessageW(This->notif.hWnd, This->notif.msg, 0, This->notif.instance); } - EnterCriticalSection(&This->evqueue.msg_crst); + LeaveCriticalSection(&This->evqueue.msg_crst); return S_OK; }