Fixed delete operator.

This commit is contained in:
Marc-Antoine Lortie
2020-01-18 15:16:03 -05:00
parent 247667233d
commit b74562f8a0

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