# IFC: fix potential crash during merging of polygon boundaries

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1016 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
aramis_acg
2011-05-30 21:04:11 +00:00
parent 23ea1ac97d
commit 15565c4858
2 changed files with 7 additions and 5 deletions

View File

@@ -445,11 +445,10 @@ STEP::LazyObject::~LazyObject()
{
// make sure the right dtor/operator delete get called
if (obj) {
delete obj;
delete conv_args;
}
else delete[] args;
delete obj;
}
// ------------------------------------------------------------------------------------------------