Author: tkreuzer Date: Thu Nov 4 10:16:14 2010 New Revision: 49464
URL: http://svn.reactos.org/svn/reactos?rev=49464&view=rev Log: [KERNEL32] Print delphi exception with the Exception code 0xeedfade, we were previously only checking for 0xeedface, maybe an older value.
Modified: trunk/reactos/dll/win32/kernel32/except/except.c
Modified: trunk/reactos/dll/win32/kernel32/except/except.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/kernel32/except/e... ============================================================================== --- trunk/reactos/dll/win32/kernel32/except/except.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/kernel32/except/except.c [iso-8859-1] Thu Nov 4 10:16:14 2010 @@ -413,7 +413,7 @@ } }
- if (dwExceptionCode == 0xeedface) + if (dwExceptionCode == 0xeedface || dwExceptionCode == 0xeedfade) { DPRINT1("Delphi Exception at address: %p\n", ExceptionRecord.ExceptionInformation[0]); DPRINT1("Exception-Object: %p\n", ExceptionRecord.ExceptionInformation[1]);