From a93c9b7f114ff640e205d9e74d16984fb30b9809 Mon Sep 17 00:00:00 2001 From: hakril Date: Sat, 8 Feb 2025 19:31:45 +0100 Subject: [PATCH] Fix typo --- windows/winobject/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/winobject/process.py b/windows/winobject/process.py index b910b64..56286c9 100644 --- a/windows/winobject/process.py +++ b/windows/winobject/process.py @@ -1172,7 +1172,7 @@ class WinProcess(Process): # And we can asume we known what we are doing -> So no safeguard ;) thread_handle = HANDLE() if windows.current_process.bitness == 32 and self.bitness == 64: - if self._is_x86_on_arm64(): + if self._is_x86_on_arm64: raise NotImplementedError("Crossing heaven gate x86 -> arm64 not implemented") windows.syswow64.NtCreateThreadEx_32_to_64(ThreadHandle=byref(thread_handle) ,ProcessHandle=self.handle, lpStartAddress=addr, lpParameter=param) else: