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