mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Minor correction to RtlDeleteCriticalSection.
svn path=/trunk/; revision=7924
This commit is contained in:
parent
d00716c055
commit
549c9ff77e
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: critical.c,v 1.16 2004/01/29 23:41:36 navaraf Exp $
|
||||
/* $Id: critical.c,v 1.17 2004/01/30 17:32:17 navaraf Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -25,7 +25,7 @@ VOID STDCALL
|
|||
RtlDeleteCriticalSection(PCRITICAL_SECTION CriticalSection)
|
||||
{
|
||||
NtClose(CriticalSection->LockSemaphore);
|
||||
CriticalSection->SpinCount = -1;
|
||||
CriticalSection->LockCount = -1;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue