Author: pschweitzer
Date: Wed Sep  2 20:11:39 2015
New Revision: 68917

URL: http://svn.reactos.org/svn/reactos?rev=68917&view=rev
Log:
[KERNEL32]
Always print information about unhandled exception, even when GUI error dialog 
boxes are disabled

CORE-10088

Modified:
    trunk/reactos/dll/win32/kernel32/client/except.c

Modified: trunk/reactos/dll/win32/kernel32/client/except.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/kernel32/client/except.c?rev=68917&r1=68916&r2=68917&view=diff
==============================================================================
--- trunk/reactos/dll/win32/kernel32/client/except.c    [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/kernel32/client/except.c    [iso-8859-1] Wed Sep  2 
20:11:39 2015
@@ -292,8 +292,7 @@
          return ret;
    }
 
-   if ((GetErrorMode() & SEM_NOGPFAULTERRORBOX) == 0)
-      PrintStackTrace(ExceptionInfo);
+   PrintStackTrace(ExceptionInfo);
 
    /* Save exception code and address */
    ErrorParameters[0] = (ULONG)ExceptionRecord->ExceptionCode;


Reply via email to