mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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:
parent
c29c2a9063
commit
338d0ad3f9
@ -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 >
|
||||
|
Loading…
x
Reference in New Issue
Block a user