ntdll: Don't truncate SP in arm64 handle_syscall_fault.
This seems to be a copypaste typo from 0b3db9dfa2
.
Signed-off-by: Martin Storsjo <martin@martin.st>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d99a454a6b
commit
5bbd8130ad
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue