[KERNEL32]

Always print information about unhandled exception, even when GUI error dialog boxes are disabled

CORE-10088

svn path=/trunk/; revision=68917
This commit is contained in:
Pierre Schweitzer 2015-09-02 20:11:39 +00:00
parent a5b00b8271
commit db71d8393e

View file

@ -292,8 +292,7 @@ UnhandledExceptionFilter(struct _EXCEPTION_POINTERS *ExceptionInfo)
return ret;
}
if ((GetErrorMode() & SEM_NOGPFAULTERRORBOX) == 0)
PrintStackTrace(ExceptionInfo);
PrintStackTrace(ExceptionInfo);
/* Save exception code and address */
ErrorParameters[0] = (ULONG)ExceptionRecord->ExceptionCode;