Remove extraneous destructor

This caused the 'CUtlBinaryBlock' destructor to be called twice (freeing memory on the same pointer twice). Destructor should only be called explicitly in 'CUtlBinaryBlock' itself to purge vector memory due to late binding of game's memalloc singleton.
This commit is contained in:
Kawe Mazidjatari 2023-03-18 15:40:04 +01:00
parent a0fe2a0b1a
commit e886208d64

View File

@ -175,17 +175,6 @@ public:
CUtlString( CUtlString&& moveFrom ); // = default;
CUtlString &operator=( CUtlString&& moveFrom ); // = default;
#endif
~CUtlString()
{
// Has to be explicitly called due to the
// current design of our SDK. Unlike other
// Source Engine games, we couldn't import
// the memalloc singleton as the executable
// is monolithic; we obtain it post init
// (too late for binding it against the
// new/delete operators..).
m_Storage.~CUtlBinaryBlock();
}
// Also can assign from a regular C-style string
CUtlString &operator=( const char *src );