Kaydet (Commit) fa84cdbf authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#704635 Explicit null dereferenced

Change-Id: I2c4c14d28e6e0217a821efe4deb38ef6a97b5f74
üst 2ef43902
...@@ -1813,6 +1813,9 @@ CacheItemList::iterator FilterCache::impl_loadItemOnDemand( EItemType ...@@ -1813,6 +1813,9 @@ CacheItemList::iterator FilterCache::impl_loadItemOnDemand( EItemType
break; break;
} }
if (!pList)
throw css::container::NoSuchElementException();
css::uno::Reference< css::container::XNameAccess > xRoot(xConfig, css::uno::UNO_QUERY_THROW); css::uno::Reference< css::container::XNameAccess > xRoot(xConfig, css::uno::UNO_QUERY_THROW);
css::uno::Reference< css::container::XNameAccess > xSet ; css::uno::Reference< css::container::XNameAccess > xSet ;
xRoot->getByName(sSet) >>= xSet; xRoot->getByName(sSet) >>= xSet;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment