Print dll name too for stub exceptions.

This commit is contained in:
Alexandre Julliard 2003-02-18 23:25:34 +00:00
parent 5d35bc7428
commit 8bc93e2d6f
1 changed files with 2 additions and 1 deletions

View File

@ -191,7 +191,8 @@ void WINAPI EXC_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context )
TRACE( "code=%lx flags=%lx addr=%p\n", rec->ExceptionCode, rec->ExceptionFlags, rec->ExceptionAddress );
for (c=0; c<rec->NumberParameters; c++) TRACE(" info[%ld]=%08lx\n", c, rec->ExceptionInformation[c]);
if (rec->ExceptionCode == EXCEPTION_WINE_STUB)
FIXME( "call to unimplemented function %s\n", (char*)rec->ExceptionInformation[1] );
FIXME( "call to unimplemented function %s.%s\n",
(char*)rec->ExceptionInformation[0], (char*)rec->ExceptionInformation[1] );
if (send_debug_event( rec, TRUE, context ) == DBG_CONTINUE) return; /* continue execution */