mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 16:15:46 -04:00
Common/HeapArray: Fix mismatched delete/free
This commit is contained in:
@ -81,7 +81,7 @@ public:
|
||||
|
||||
this_type& operator=(this_type&& move)
|
||||
{
|
||||
delete[] m_data;
|
||||
deallocate();
|
||||
m_data = move.m_data;
|
||||
move.m_data = nullptr;
|
||||
return *this;
|
||||
|
Reference in New Issue
Block a user