Browse Source

Fixed delete operator.

Marc-Antoine Lortie 5 years ago
parent
commit
b74562f8a0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/MDL/MDLLoader.cpp

+ 1 - 1
code/MDL/MDLLoader.cpp

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