Commit 840434ac authored by Alexandre Julliard's avatar Alexandre Julliard

Don't ignore first chance debug exceptions since it may be a

breakpoint that we set ourselves.
parent 88bb926a
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment