- Reapply the PsTerminateSystemThread typo fix. We do boot fine with this fix.

- Note to self: Don't commit after midnight and always test your patches yourself

svn path=/trunk/; revision=35299
This commit is contained in:
Stefan Ginsberg 2008-08-13 07:55:59 +00:00
parent ab8e76985a
commit f93e329c60

View file

@ -1086,7 +1086,7 @@ PsTerminateSystemThread(IN NTSTATUS ExitStatus)
PETHREAD Thread = PsGetCurrentThread();
/* Make sure this is a system thread */
if (Thread->SystemThread) return STATUS_INVALID_PARAMETER;
if (!Thread->SystemThread) return STATUS_INVALID_PARAMETER;
/* Terminate it for real */
return PspTerminateThreadByPointer(Thread, ExitStatus, TRUE);