Fixed delete operator.

pull/2927/head
Marc-Antoine Lortie 2020-01-18 15:16:03 -05:00
parent 247667233d
commit b74562f8a0
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ void MDLImporter::InternReadFile( const std::string& pFile,
// delete the file buffer and cleanup.
auto DeleteBufferAndCleanup = [&]() {
if (mBuffer) {
delete mBuffer;
delete [] mBuffer;
mBuffer = nullptr;
}
AI_DEBUG_INVALIDATE_PTR(pIOHandler);