mirror of
https://github.com/reactos/reactos.git
synced 2025-06-12 18:18:29 +00:00
[RTL][KERNEL32] Move the STUB printing code to a place where it's actually called
This commit is contained in:
parent
1c97b84600
commit
b58c3d73ca
2 changed files with 14 additions and 11 deletions
|
@ -251,6 +251,13 @@ static VOID
|
|||
DbgPrint("Faulting Address: %8x\n", ExceptionRecord->ExceptionInformation[1]);
|
||||
}
|
||||
|
||||
/* Trace the wine special error and show the modulename and functionname */
|
||||
if (ExceptionRecord->ExceptionCode == 0x80000100 /* EXCEPTION_WINE_STUB */ &&
|
||||
ExceptionRecord->NumberParameters == 2)
|
||||
{
|
||||
DbgPrint("Missing function: %s!%s\n", (PSZ)ExceptionRecord->ExceptionInformation[0], (PSZ)ExceptionRecord->ExceptionInformation[1]);
|
||||
}
|
||||
|
||||
_dump_context(ContextRecord);
|
||||
_module_name_from_addr(ExceptionRecord->ExceptionAddress, &StartAddr, szMod, sizeof(szMod));
|
||||
DbgPrint("Address:\n %8x+%-8x %s\n",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue