winedbg: Handle the 4th parameter for 64-bit C++ exceptions.
Signed-off-by: Daniel Lehman <dlehman@esri.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b363f386cd
commit
26b37c40e7
|
@ -953,6 +953,10 @@ void info_win32_exception(void)
|
|||
if(rec->NumberParameters == 3 && rec->ExceptionInformation[0] == CXX_FRAME_MAGIC)
|
||||
dbg_printf("C++ exception(object = 0x%08lx, type = 0x%08lx)",
|
||||
rec->ExceptionInformation[1], rec->ExceptionInformation[2]);
|
||||
else if(rec->NumberParameters == 4 && rec->ExceptionInformation[0] == CXX_FRAME_MAGIC)
|
||||
dbg_printf("C++ exception(object = %p, type = %p, base = %p)",
|
||||
(void*)rec->ExceptionInformation[1], (void*)rec->ExceptionInformation[2],
|
||||
(void*)rec->ExceptionInformation[3]);
|
||||
else
|
||||
dbg_printf("C++ exception with strange parameter count %d or magic 0x%08lx",
|
||||
rec->NumberParameters, rec->ExceptionInformation[0]);
|
||||
|
|
Loading…
Reference in New Issue