Skip to content
Snippets Groups Projects
Commit 5bbd8130 authored by Martin Storsjö's avatar Martin Storsjö Committed by Alexandre Julliard
Browse files

ntdll: Don't truncate SP in arm64 handle_syscall_fault.


This seems to be a copypaste typo from 0b3db9df.

Signed-off-by: default avatarMartin Storsjo <martin@martin.st>
Signed-off-by: Alexandre Julliard's avatarAlexandre Julliard <julliard@winehq.org>
parent d99a454a
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment