mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2026-05-20 05:09:01 -05:00
a8820c14f2
Currently on line 116 of AssetManager.cpp, we have the following `*data = (char*)malloc(*len);` however on line 45 of AssetManager.h we have `delete m_Base;` which is not the same allocator as we used to allocate the memory. This PR matches the malloc and free to be the correct calls.