Common/HeapArray: Fix mismatched delete/free

pull/3038/head
Stenzek 2 years ago
parent 41bb9fddfc
commit 8ddb0c4b23
No known key found for this signature in database

@ -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;

Loading…
Cancel
Save