GUACAMOLE-362: Avoid NullPointerException when closing input stream.

This commit is contained in:
Nick Couchman
2017-10-28 14:19:37 -04:00
parent 91e5702768
commit 32ccde08d2

View File

@@ -81,6 +81,7 @@ public abstract class PrivateKeyGuacamoleProperty implements GuacamoleProperty<P
throw new GuacamoleServerException("Key is not in expected PKCS8 encoding.", e); throw new GuacamoleServerException("Key is not in expected PKCS8 encoding.", e);
} }
finally { finally {
if (keyStreamIn != null)
keyStreamIn.close(); keyStreamIn.close();
} }
} }