mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
- 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:
parent
ab8e76985a
commit
f93e329c60
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue