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

coverity#1326460 Dereference null return value

Change-Id: I18a80d7695f081c6f274dd7de68bd4dee1054be4
üst 1ffa92cf
......@@ -82,8 +82,8 @@ public class ConverterInfoReader {
JarEntry jarentry = jarConnection.getJarEntry();
JarFile jarfile = jarConnection.getJarFile();
if (jarfile == null) {
throw new IOException("Missing jar file");
if (jarfile == null || jarentry == null) {
throw new IOException("Missing jar entry");
}
// Build the InputSource
......
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