From 44ee738e8bd8736e1634fd50de6ce9c13c773dd2 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Fri, 11 May 2018 19:57:03 +1000 Subject: [PATCH] Updated ntdll-Loader_Machine_Type patchset --- .../0001-ntdll-Check-architecture-before-loading-module.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/ntdll-Loader_Machine_Type/0001-ntdll-Check-architecture-before-loading-module.patch b/patches/ntdll-Loader_Machine_Type/0001-ntdll-Check-architecture-before-loading-module.patch index 1058fad2..ef35d87f 100644 --- a/patches/ntdll-Loader_Machine_Type/0001-ntdll-Check-architecture-before-loading-module.patch +++ b/patches/ntdll-Loader_Machine_Type/0001-ntdll-Check-architecture-before-loading-module.patch @@ -124,7 +124,7 @@ index 1a3dd80..db79296 100644 + SIZE_T ret; + + if(NtQuerySection(hfile, SectionImageInformation, &info, sizeof(info), &ret) == STATUS_SUCCESS) -+ return !info.ImageContainsCode; ++ return !info.TransferAddress; + + return FALSE; +}