mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 12:23:31 +00:00
Invoke always our own exception handler if the exception wasn't handled. It prints some nice informations.
svn path=/trunk/; revision=17597
This commit is contained in:
@@ -36,10 +36,14 @@ _SEH_FILTER(BaseExceptionFilter)
|
||||
}
|
||||
_SEH_HANDLE
|
||||
{
|
||||
ExceptionDisposition = UnhandledExceptionFilter(ExceptionInfo);
|
||||
}
|
||||
_SEH_END;
|
||||
}
|
||||
if ((ExceptionDisposition == EXCEPTION_CONTINUE_SEARCH || ExceptionDisposition == EXCEPTION_EXECUTE_HANDLER) &&
|
||||
GlobalTopLevelExceptionFilter != UnhandledExceptionFilter)
|
||||
{
|
||||
ExceptionDisposition = UnhandledExceptionFilter(ExceptionInfo);
|
||||
}
|
||||
|
||||
return ExceptionDisposition;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user