mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 04:37:15 +00:00
[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:
parent
9cdff0edae
commit
3872d5db6c
1 changed files with 1 additions and 1 deletions
|
@ -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("Delphi Exception at address: %p\n", ExceptionRecord.ExceptionInformation[0]);
|
||||||
DPRINT1("Exception-Object: %p\n", ExceptionRecord.ExceptionInformation[1]);
|
DPRINT1("Exception-Object: %p\n", ExceptionRecord.ExceptionInformation[1]);
|
||||||
|
|
Loading…
Reference in a new issue