[SMSS][CSRSRV]: Typo fix.

[CSRSRV]: Fix an assertion.

svn path=/trunk/; revision=63660
This commit is contained in:
Hermès Bélusca-Maïto 2014-06-28 21:40:34 +00:00
parent 35e137f5c9
commit b45ed87bd3
3 changed files with 3 additions and 3 deletions

View file

@ -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,

View file

@ -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 */

View file

@ -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 */