mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 22:50:43 +00:00
Don't ignore first chance debug exceptions since it may be a
breakpoint that we set ourselves.
This commit is contained in:
parent
88bb926a5e
commit
840434acd0
@ -420,7 +420,7 @@ static BOOL DEBUG_HandleException(EXCEPTION_RECORD *rec, BOOL first_chance, BOOL
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
if (first_chance && !force && !DBG_IVAR(BreakOnFirstChance))
|
||||
if (first_chance && !is_debug && !force && !DBG_IVAR(BreakOnFirstChance))
|
||||
{
|
||||
/* pass exception to program except for debug exceptions */
|
||||
*cont = is_debug ? DBG_CONTINUE : DBG_EXCEPTION_NOT_HANDLED;
|
||||
|
Loading…
Reference in New Issue
Block a user