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

coverity#1326406 Dereference null return value

Change-Id: Ifedb32769551949fdda7d203812b803353a3f487
üst 569522be
......@@ -628,7 +628,7 @@ public class APIDescGetter extends DescGetter
DescEntry[] subEntries = getSubEntries(csvFile, theEntry);
theEntry.SubEntryCount = subEntries.length;
theEntry.SubEntryCount = subEntries != null ? subEntries.length : 0;
theEntry.SubEntries = subEntries;
return theEntry;
......
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