From 3872d5db6cb0b2d68ab8d04ae229288e459de5bd Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Thu, 4 Nov 2010 10:16:14 +0000 Subject: [PATCH] [KERNEL32] Print delphi exception with the Exception code 0xeedfade, we were previously only checking for 0xeedface, maybe an older value. svn path=/trunk/; revision=49464 --- reactos/dll/win32/kernel32/except/except.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/kernel32/except/except.c b/reactos/dll/win32/kernel32/except/except.c index d46a51c4ed3..d57bd7a2e14 100644 --- a/reactos/dll/win32/kernel32/except/except.c +++ b/reactos/dll/win32/kernel32/except/except.c @@ -413,7 +413,7 @@ RaiseException(IN DWORD dwExceptionCode, } } - 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]);