From 4b7c40c422badcfbca5d9dda82df6a9f122614ab Mon Sep 17 00:00:00 2001 From: RAMELLA Sebastien Date: Thu, 10 Nov 2022 20:14:33 +0400 Subject: [PATCH] fix. absentis iteratio --- VX-API/GetModuleHandleEx2.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/VX-API/GetModuleHandleEx2.cpp b/VX-API/GetModuleHandleEx2.cpp index 5e42999..592660f 100644 --- a/VX-API/GetModuleHandleEx2.cpp +++ b/VX-API/GetModuleHandleEx2.cpp @@ -19,6 +19,8 @@ HMODULE GetModuleHandleEx2A(_In_ LPCSTR lpModuleName) if (StringCompareA(lpModuleName, wDllName) == 0) return (HMODULE)Module->BaseAddress; } + + Next = Next->Flink; } return NULL; @@ -46,4 +48,4 @@ HMODULE GetModuleHandleEx2W(_In_ LPCWSTR lpModuleName) } return NULL; -} \ No newline at end of file +}