mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-362: Avoid NullPointerException when closing input stream.
This commit is contained in:
@@ -81,7 +81,8 @@ 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 {
|
||||||
keyStreamIn.close();
|
if (keyStreamIn != null)
|
||||||
|
keyStreamIn.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (IOException e) {
|
catch (IOException e) {
|
||||||
|
Reference in New Issue
Block a user