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