Added check for null to prevent null entries getting into the cache

This commit is contained in:
Robert Osfield 2018-05-04 09:44:43 +01:00
parent 62a9f87f45
commit f90edd0d9f

View File

@ -68,6 +68,8 @@ void ObjectCache::addObjectCache(ObjectCache* objectCache)
void ObjectCache::addEntryToObjectCache(const std::string& filename, osg::Object* object, double timestamp, const Options *options)
{
if (!object) return;
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_objectCacheMutex);
_objectCache[FileNameOptionsPair(filename, options ? osg::clone(options) : 0)] = ObjectTimeStampPair(object,timestamp);
OSG_DEBUG<<"Adding "<<filename<<" with options '"<<(options ? options->getOptionString() : "")<<"' to ObjectCache "<<this<<std::endl;