From 772fdbc25bf74f3a7b0e6beff25d45b2cf0a849c Mon Sep 17 00:00:00 2001 From: zeffy Date: Sat, 10 Mar 2018 16:50:56 -0800 Subject: [PATCH] GetCurrentProcess() -> NtCurrentProcess() --- src/wufuc/rundll32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wufuc/rundll32.c b/src/wufuc/rundll32.c index f36c224..8e68635 100644 --- a/src/wufuc/rundll32.c +++ b/src/wufuc/rundll32.c @@ -139,7 +139,7 @@ destroy_list: ptrlist_destroy(&list); if ( Suspending ) - NtSuspendProcess(GetCurrentProcess()); + NtSuspendProcess(NtCurrentProcess()); release_mutex: ReleaseMutex(g_hMainMutex); CloseHandle(g_hMainMutex);