ntdll: Also call the unwind handler for the target frame.

This commit is contained in:
Alexandre Julliard 2012-03-30 14:42:55 +02:00
parent 4e9b1faed9
commit a777676bc4

View file

@ -3049,7 +3049,7 @@ void WINAPI RtlUnwindEx( PVOID end_frame, PVOID target_ip, EXCEPTION_RECORD *rec
dispatch.EstablisherFrame = new_context.Rsp;
}
if (dispatch.EstablisherFrame == (ULONG64)end_frame) break;
if (context->Rsp == (ULONG64)end_frame) break;
*context = new_context;
}