parent
0dfab9fafa
commit
fff2367174
@ -0,0 +1,13 @@
|
||||
--- a/patches/ntdll-RtlCreateUserThread/0001-ntdll-Refactor-RtlCreateUserThread-into-NtCreateThre.patch
|
||||
+++ b/patches/ntdll-RtlCreateUserThread/0001-ntdll-Refactor-RtlCreateUserThread-into-NtCreateThre.patch
|
||||
@@ -222,8 +222,8 @@
|
||||
+ context.R0 = (DWORD)entry;
|
||||
+ context.R1 = (DWORD)arg;
|
||||
+#elif defined(__aarch64__)
|
||||
-+ context.u.s.X0 = (DWORD_PTR)entry;
|
||||
-+ context.u.s.X1 = (DWORD_PTR)arg;
|
||||
++ context.u.X0 = (DWORD_PTR)entry;
|
||||
++ context.u.X1 = (DWORD_PTR)arg;
|
||||
+#elif defined(__powerpc__)
|
||||
+ context.Gpr3 = (DWORD)entry;
|
||||
+ context.Gpr4 = (DWORD)arg;
|
Loading…
Reference in new issue