From db71d8393ece5cbbb8484bfa78dfe319aeda2f35 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Wed, 2 Sep 2015 20:11:39 +0000 Subject: [PATCH] [KERNEL32] Always print information about unhandled exception, even when GUI error dialog boxes are disabled CORE-10088 svn path=/trunk/; revision=68917 --- reactos/dll/win32/kernel32/client/except.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reactos/dll/win32/kernel32/client/except.c b/reactos/dll/win32/kernel32/client/except.c index 53d962d5476..c97ab652757 100644 --- a/reactos/dll/win32/kernel32/client/except.c +++ b/reactos/dll/win32/kernel32/client/except.c @@ -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;