fix potential memory leaks

This commit is contained in:
Erwin Coumans
2017-06-07 19:00:44 -07:00
parent 46f2f3db4e
commit c1e32e6428
3 changed files with 15 additions and 0 deletions

View File

@@ -64,8 +64,10 @@ bool b3ImportMeshUtility::loadAndRegisterMeshFromFileInternal(const std::string&
meshData.m_textureHeight = height;
} else
{
b3Warning("Unsupported texture image format [%s]\n",relativeFileName);
meshData.m_textureWidth = 0;
meshData.m_textureHeight = 0;
break;
}
} else