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

Alexandre Julliard julliard at winehq.org
Fri Mar 30 11:27:06 CDT 2012


Module: wine
Branch: master
Commit: a777676bc48d4575a0bafb40bad1fe85d269e352
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a777676bc48d4575a0bafb40bad1fe85d269e352

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Fri Mar 30 14:42:55 2012 +0200

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

---

 dlls/ntdll/signal_x86_64.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ntdll/signal_x86_64.c b/dlls/ntdll/signal_x86_64.c
index 5470a59..6677fed 100644
--- a/dlls/ntdll/signal_x86_64.c
+++ b/dlls/ntdll/signal_x86_64.c
@@ -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;
     }
 




More information about the wine-cvs mailing list