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

coverity#1326446 Dereference null return value

Change-Id: Ief00b565147bd4a08c4fd6de9df71d9126dc1f75
üst 9740a474
...@@ -137,6 +137,12 @@ public class ParcelContainer implements XNameAccess { ...@@ -137,6 +137,12 @@ public class ParcelContainer implements XNameAccess {
for (ParcelContainer c : childContainers) { for (ParcelContainer c : childContainers) {
String name = c.getName();
if (name == null)
{
continue;
}
String location = String location =
ScriptMetaData.getLocationPlaceHolder(c.containerUrl, c.getName()); ScriptMetaData.getLocationPlaceHolder(c.containerUrl, c.getName());
......
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