fix CUtlMemory dtor crash

for some reason this caused an exception when trying to free CUtlString in the console auto-complete routine.
This commit is contained in:
rexx 2023-03-21 22:43:09 +00:00
parent c29c2a9063
commit 338d0ad3f9

View File

@ -444,10 +444,10 @@ CUtlMemory<T, I>::~CUtlMemory()
{
Purge();
#ifdef _DEBUG
m_pMemory = reinterpret_cast<T*>(0xFEFEBAAD);
m_nAllocationCount = 0x7BADF00D;
#endif
//#ifdef _DEBUG
// m_pMemory = reinterpret_cast<T*>(0xFEFEBAAD);
// m_nAllocationCount = 0x7BADF00D;
//#endif
}
template< class T, class I >