From 009fd49e7fb931a2cfa95b6b1fb274924e984d58 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 24 Nov 2022 13:39:57 +0100 Subject: [PATCH] Null hlclient pointer on dedicated server properly We have a pointer to a pointer, as we obtain the address in which the pointer to the hlclient structure is set. --- r5dev/client/cdll_engine_int.h | 8 ++++---- r5dev/launcher/IApplication.cpp | 6 ++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/r5dev/client/cdll_engine_int.h b/r5dev/client/cdll_engine_int.h index e1533097..7157eb74 100644 --- a/r5dev/client/cdll_engine_int.h +++ b/r5dev/client/cdll_engine_int.h @@ -60,8 +60,8 @@ inline CMemory p_CHLClient_GetAllClasses; inline auto CHLClient_GetAllClasses = p_CHLClient_GetAllClasses.RCast(); #endif // !DEDICATED -inline CHLClient* gHLClient = nullptr; -inline CHLClient* g_pHLClient = nullptr; +inline CHLClient** gHLClient = nullptr; +inline CHLClient** g_pHLClient = nullptr; #ifndef DEDICATED inline IClientEntityList* g_pClientEntityList = nullptr; #endif // !DEDICATED @@ -118,11 +118,11 @@ class VDll_Engine_Int : public IDetour { gHLClient = g_GameDll.FindPatternSIMD(reinterpret_cast ("\x48\x8D\x05\x00\x00\x00\x00\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\x48\x89\x5C\x24\x00\x57\x48\x83\xEC\x30\x48\x8B\xF9"), - "xxx????xxxxxxxxxxxxx?xxxxxxxx").ResolveRelativeAddressSelf(0x3, 0x7).RCast(); + "xxx????xxxxxxxxxxxxx?xxxxxxxx").ResolveRelativeAddressSelf(0x3, 0x7).RCast(); g_pHLClient = g_GameDll.FindPatternSIMD(reinterpret_cast ("\x41\x55\x48\x83\xEC\x00\x4C\x63\x91\x00\x00\x00\x00"), - "xxxxx?xxx????").FindPatternSelf("4C 8B", CMemory::Direction::DOWN, 512, 2).ResolveRelativeAddressSelf(0x3, 0x7).RCast(); + "xxxxx?xxx????").FindPatternSelf("4C 8B", CMemory::Direction::DOWN, 512, 2).ResolveRelativeAddressSelf(0x3, 0x7).RCast(); } virtual void GetCon(void) const { } virtual void Attach(void) const { } diff --git a/r5dev/launcher/IApplication.cpp b/r5dev/launcher/IApplication.cpp index fa4f0e37..672bbd54 100644 --- a/r5dev/launcher/IApplication.cpp +++ b/r5dev/launcher/IApplication.cpp @@ -90,10 +90,8 @@ bool CModAppSystemGroup::Create(CModAppSystemGroup* pModAppSystemGroup) } if (pModAppSystemGroup->IsServerOnly()) { - memset(gHLClient, '\0', sizeof(void*)); - gHLClient = nullptr; - memset(g_pHLClient, '\0', sizeof(void*)); - g_pHLClient = nullptr; + *g_pHLClient = nullptr; + *gHLClient = nullptr; } g_FrameTasks.push_back(std::move(g_TaskScheduler));