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:
Hartmut Birr 2005-08-26 13:06:24 +00:00
parent 64b5d11940
commit ead53e0588

View file

@ -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;
}