mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[NTOS:KE] Fix EIP only when the breakpoint is a break
Fixes ntdll:exception winetest crash ROSTESTS-80
This commit is contained in:
parent
2a321f6e3f
commit
158235bdd5
1 changed files with 2 additions and 2 deletions
|
@ -227,10 +227,10 @@ KiDebugHandler(IN PKTRAP_FRAME TrapFrame,
|
|||
/* Enable interrupts if the trap came from user-mode */
|
||||
if (KiUserTrap(TrapFrame)) _enable();
|
||||
|
||||
/* Dispatch the exception */
|
||||
/* Dispatch the exception. Fix EIP in case its a break breakpoint (sic) */
|
||||
KiDispatchExceptionFromTrapFrame(STATUS_BREAKPOINT,
|
||||
0,
|
||||
TrapFrame->Eip - 1,
|
||||
TrapFrame->Eip - (Parameter1 == BREAKPOINT_BREAK),
|
||||
3,
|
||||
Parameter1,
|
||||
Parameter2,
|
||||
|
|
Loading…
Reference in a new issue