revert a small section

This commit is contained in:
ASpoonPlaysGames 2024-03-08 21:35:45 +00:00
parent c27ecfdef6
commit bee7170ba4
1 changed files with 10 additions and 1 deletions

View File

@ -15,7 +15,16 @@
//-----------------------------------------------------------------------------
CModule::CModule(HMODULE hModule)
{
m_pModuleBase = reinterpret_cast<uintptr_t>(hModule);
MODULEINFO mInfo {0};
if (hModule && hModule != INVALID_HANDLE_VALUE)
GetModuleInformation(GetCurrentProcess(), hModule, &mInfo, sizeof(MODULEINFO));
m_nModuleSize = static_cast<size_t>(mInfo.SizeOfImage);
m_pModuleBase = reinterpret_cast<uintptr_t>(mInfo.lpBaseOfDll);
if (!m_nModuleSize || !m_pModuleBase)
return;
CHAR szModuleName[MAX_PATH];
DWORD dwSize = GetModuleFileNameA(hModule, szModuleName, sizeof(szModuleName));