Commit 5bbd8130 authored by Martin Storsjo's avatar Martin Storsjo Committed by Alexandre Julliard

ntdll: Don't truncate SP in arm64 handle_syscall_fault.

This seems to be a copypaste typo from 0b3db9df. Signed-off-by: 's avatarMartin Storsjo <martin@martin.st> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent d99a454a
......@@ -777,7 +777,7 @@ static BOOL handle_syscall_fault( ucontext_t *context, EXCEPTION_RECORD *rec )
REGn_sig(28, context) = frame->x28;
FP_sig(context) = frame->x29;
LR_sig(context) = frame->ret_addr;
SP_sig(context) = (DWORD)&frame->thunk_x29;
SP_sig(context) = (ULONG64)&frame->thunk_x29;
PC_sig(context) = frame->thunk_addr;
arm64_thread_data()->syscall_frame = NULL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment