Update ColladaParser.cpp

Try to close resource leak.
This commit is contained in:
Kim Kulling
2015-12-09 12:10:31 +01:00
parent bcff6210b3
commit 9ae7d438f0

View File

@@ -104,7 +104,7 @@ ColladaParser::ColladaParser( IOSystem* pIOHandler, const std::string& pFile)
ReadContents();
// release file after import
//pIOHandler->Close( file.get() );
pIOHandler->Close( file.get() );
}
// ------------------------------------------------------------------------------------------------