Update EmbedTexturesProcess.cpp

closes https://github.com/assimp/assimp/issues/2874 : fix leaked texture buffer.
pull/2880/head
Kim Kulling 2020-01-09 22:04:46 +01:00 committed by GitHub
parent cacab6bf0b
commit 625357685c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -128,7 +128,8 @@ bool EmbedTexturesProcess::addTexture(aiScene* pScene, std::string path) const {
auto oldTextures = pScene->mTextures;
pScene->mTextures = new aiTexture*[pScene->mNumTextures];
::memmove(pScene->mTextures, oldTextures, sizeof(aiTexture*) * (pScene->mNumTextures - 1u));
delete [] oldTextures;
// Add the new texture
auto pTexture = new aiTexture;
pTexture->mHeight = 0; // Means that this is still compressed