coverity#1326446 Dereference null return value

Change-Id: Ief00b565147bd4a08c4fd6de9df71d9126dc1f75
This commit is contained in:
Caolán McNamara
2015-10-22 09:43:01 +01:00
parent 9740a474a4
commit 337661a989

View File

@@ -137,6 +137,12 @@ public class ParcelContainer implements XNameAccess {
for (ParcelContainer c : childContainers) {
String name = c.getName();
if (name == null)
{
continue;
}
String location =
ScriptMetaData.getLocationPlaceHolder(c.containerUrl, c.getName());