mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
Correctly bugcheck if we aren't returning a usermode thread (#506)
Cause a corresponding bug check to occur for the reason of the user context flag being zero (a system thread), instead of using DbgBreakPoint.
This commit is contained in:
parent
9e2dd8676a
commit
054c11a02c
1 changed files with 4 additions and 1 deletions
|
@ -78,7 +78,10 @@ KiThreadStartup(VOID)
|
|||
StartFrame->SystemRoutine(StartFrame->StartRoutine, StartFrame->StartContext);
|
||||
|
||||
/* If we returned, we better be a user thread */
|
||||
if (!StartFrame->UserThread) DbgBreakPoint();
|
||||
if (!StartFrame->UserThread)
|
||||
{
|
||||
KeBugCheck(NO_USER_MODE_CONTEXT);
|
||||
}
|
||||
|
||||
/* Exit to user-mode */
|
||||
KiServiceExit2(TrapFrame);
|
||||
|
|
Loading…
Reference in a new issue