ntdll: Fix stack alignment on ARM64

André Hentschel nerv at dawncrow.de
Mon Aug 10 12:49:45 CDT 2015


---
 dlls/ntdll/signal_arm64.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ntdll/signal_arm64.c b/dlls/ntdll/signal_arm64.c
index bd91d81..3a41c84 100644
--- a/dlls/ntdll/signal_arm64.c
+++ b/dlls/ntdll/signal_arm64.c
@@ -344,7 +344,7 @@ static EXCEPTION_RECORD *setup_exception( ucontext_t *sigcontext, raise_func fun
     } *stack;
     DWORD exception_code = 0;
 
-    stack = (struct stack_layout *)(SP_sig(sigcontext) & ~3);
+    stack = (struct stack_layout *)(SP_sig(sigcontext) & ~15);
     stack--;  /* push the stack_layout structure */
 
     stack->rec.ExceptionRecord  = NULL;
-- 
1.9.1




More information about the wine-patches mailing list