mirror of
https://github.com/reactos/reactos.git
synced 2025-02-28 19:32:59 +00:00
[NTOS:KD64] Fix freezes on first chance exception when KDBG is enabled and KdIgnoreUmExceptions is TRUE
This fixes the following use case: - Execute 'kdbgctrl.exe -du' - Execute 'kdbgctrl.exe -cu' - See that last command never finishes
This commit is contained in:
parent
7068a790b2
commit
5547b74717
1 changed files with 0 additions and 5 deletions
|
@ -318,7 +318,6 @@ KdIsThisAKdTrap(IN PEXCEPTION_RECORD ExceptionRecord,
|
|||
IN PCONTEXT Context,
|
||||
IN KPROCESSOR_MODE PreviousMode)
|
||||
{
|
||||
#ifdef _WINKD_
|
||||
/*
|
||||
* Determine if this is a valid debug service call and make sure that
|
||||
* it isn't a software breakpoint
|
||||
|
@ -335,8 +334,4 @@ KdIsThisAKdTrap(IN PEXCEPTION_RECORD ExceptionRecord,
|
|||
/* We don't have to handle it */
|
||||
return FALSE;
|
||||
}
|
||||
#else
|
||||
/* KDBG has its own mechanism for ignoring user mode exceptions */
|
||||
return FALSE;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue