[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
This commit is contained in:
Timo Kreuzer 2010-11-04 10:16:14 +00:00
parent 9cdff0edae
commit 3872d5db6c

View file

@ -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]);