1
0
Fork 0

Fix possible null deref

This commit is contained in:
hpi1 2019-05-24 12:00:31 +03:00
parent 38bbd8e8b1
commit ff9f21ee93
1 changed files with 3 additions and 3 deletions

View File

@ -55,9 +55,9 @@ public class FileInputStream extends InputStream
getLogger().error("" + e);
}
}
}
if (name.startsWith("file:")) {
System.err.println("ERROR: URL in FileInputStream: " + name);
if (name.startsWith("file:")) {
System.err.println("ERROR: unresolved URL in FileInputStream: " + name);
}
}
SecurityManager security = System.getSecurityManager();