mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Call the correct user mode dispatch function in KiDispatchException. The bug was introduced by r17053.
svn path=/trunk/; revision=17558
This commit is contained in:
parent
64b5d11940
commit
ead53e0588
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ KiDispatchException(PEXCEPTION_RECORD ExceptionRecord,
|
|||
DPRINT1("User-mode stack was invalid. Terminating target thread\n");
|
||||
}
|
||||
/* Set EIP to the User-mode Dispathcer */
|
||||
Tf->Eip = (ULONG)KeRaiseUserExceptionDispatcher;
|
||||
Tf->Eip = (ULONG)KeUserExceptionDispatcher;
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue