Added handling of NULL
This commit is contained in:
parent
ac136d92e7
commit
de6eb1d97e
@ -495,7 +495,13 @@ osgDB::ReaderWriter::ReadResult ReaderWriterSTL::readNode(const std::string& fil
|
|||||||
if (!isBinary)
|
if (!isBinary)
|
||||||
{
|
{
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
|
|
||||||
fp = osgDB::fopen(fileName.c_str(), "r");
|
fp = osgDB::fopen(fileName.c_str(), "r");
|
||||||
|
|
||||||
|
if (!fp)
|
||||||
|
{
|
||||||
|
return ReadResult::FILE_NOT_FOUND;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
osg::ref_ptr<osg::Group> group = new osg::Group;
|
osg::ref_ptr<osg::Group> group = new osg::Group;
|
||||||
|
Loading…
Reference in New Issue
Block a user