Bugfix: File handle from opening binary STL file isn't released. (Thanks to Peter Newmann for the path) closes #493

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@567 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2012-03-30 09:47:37 +00:00
parent 4ee67642e1
commit 3c0e93e261

View File

@@ -336,6 +336,8 @@ read_stlb(const std::string& _filename, BaseImporter& _bi) const
--nT;
}
fclose(in);
return true;
}