Powerpc instruction pointer is Iar, not Eip.

oldstable
Marcus Meissner 2002-10-30 20:25:55 +00:00 committed by Alexandre Julliard
parent 10d312eac1
commit 0d238f7150
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ static HANDLER_DEF(abrt_handler)
rec.ExceptionCode = EXCEPTION_WINE_ASSERTION;
rec.ExceptionFlags = EH_NONCONTINUABLE;
rec.ExceptionRecord = NULL;
rec.ExceptionAddress = (LPVOID)context.Eip;
rec.ExceptionAddress = (LPVOID)context.Iar;
rec.NumberParameters = 0;
EXC_RtlRaiseException( &rec, &context ); /* Should never return.. */
restore_context( &context, HANDLER_CONTEXT );