From c614d75a4fcec070c93ed281446a3af76d858986 Mon Sep 17 00:00:00 2001 From: PixieCore <41352111+IcePixelx@users.noreply.github.com> Date: Wed, 29 Jun 2022 17:07:06 +0200 Subject: [PATCH] Removed ConVar string deletion. * This will crash due to the string not being allocated with alloc. Even if the source engine would allocate it, it would use CStdMemAlloc and it would crash anyway. But it doesn't so we can just leave that out! --- r5dev/tier1/IConVar.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/r5dev/tier1/IConVar.cpp b/r5dev/tier1/IConVar.cpp index fca670b6..55b706b9 100644 --- a/r5dev/tier1/IConVar.cpp +++ b/r5dev/tier1/IConVar.cpp @@ -31,11 +31,6 @@ ConVar::ConVar(const char* pszName, const char* pszDefaultValue, int nFlags, con //----------------------------------------------------------------------------- ConVar::~ConVar(void) { - if (m_Value.m_pszString) - { - delete[] m_Value.m_pszString; - m_Value.m_pszString = NULL; - } } //-----------------------------------------------------------------------------