mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[WIN32K]
Apply the same fix for EngAcquireSemaphore to EngReleaseSemaphore. CORE-9779 #comment Yet another try please svn path=/trunk/; revision=70106
This commit is contained in:
parent
2a541347a6
commit
b5c754bd5f
1 changed files with 8 additions and 1 deletions
|
@ -68,7 +68,14 @@ EngReleaseSemaphore(
|
|||
{
|
||||
// www.osr.com/ddk/graphics/gdifncs_5u3r.htm
|
||||
PTHREADINFO W32Thread;
|
||||
ASSERT(hsem);
|
||||
|
||||
/* On Windows a NULL hsem is ignored */
|
||||
if (hsem == NULL)
|
||||
{
|
||||
DPRINT1("EngReleaseSemaphore called with hsem == NULL!\n");
|
||||
return;
|
||||
}
|
||||
|
||||
W32Thread = PsGetThreadWin32Thread(PsGetCurrentThread());
|
||||
if (W32Thread) --W32Thread->dwEngAcquireCount;
|
||||
ExReleaseResourceAndLeaveCriticalRegion((PERESOURCE)hsem);
|
||||
|
|
Loading…
Reference in a new issue