mirror of
https://github.com/reactos/reactos.git
synced 2025-07-28 15:22:11 +00:00
[SMSS][CSRSRV]: Typo fix.
[CSRSRV]: Fix an assertion. svn path=/trunk/; revision=63660
This commit is contained in:
parent
35e137f5c9
commit
b45ed87bd3
3 changed files with 3 additions and 3 deletions
|
@ -536,7 +536,7 @@ SmpRestoreBootStatusData(IN BOOLEAN BootOkay,
|
||||||
Status = RtlLockBootStatusData(&BootState);
|
Status = RtlLockBootStatusData(&BootState);
|
||||||
if (NT_SUCCESS(Status))
|
if (NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
/* Write the bootokay and bootshudown values */
|
/* Write the bootokay and bootshutdown values */
|
||||||
RtlGetSetBootStatusData(BootState,
|
RtlGetSetBootStatusData(BootState,
|
||||||
FALSE,
|
FALSE,
|
||||||
RtlBsdItemBootGood,
|
RtlBsdItemBootGood,
|
||||||
|
|
|
@ -1297,7 +1297,7 @@ CsrShutdownProcesses(IN PLUID CallerLuid,
|
||||||
CsrProcess->ShutdownFlags = 0;
|
CsrProcess->ShutdownFlags = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set shudown Priority */
|
/* Set shutdown Priority */
|
||||||
CsrSetToShutdownPriority();
|
CsrSetToShutdownPriority();
|
||||||
|
|
||||||
/* Start looping */
|
/* Start looping */
|
||||||
|
|
|
@ -1045,7 +1045,7 @@ CsrReferenceThread(IN PCSR_THREAD CsrThread)
|
||||||
CsrAcquireProcessLock();
|
CsrAcquireProcessLock();
|
||||||
|
|
||||||
/* Sanity checks */
|
/* Sanity checks */
|
||||||
ASSERT(CsrThread->Flags & CsrThreadTerminated); // CSR_THREAD_DESTROYED in ASSERT
|
ASSERT((CsrThread->Flags & CsrThreadTerminated) == 0);
|
||||||
ASSERT(CsrThread->ReferenceCount != 0);
|
ASSERT(CsrThread->ReferenceCount != 0);
|
||||||
|
|
||||||
/* Increment reference count */
|
/* Increment reference count */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue