-
Bug
-
Resolution: Done
-
Major
-
7.1.0.DR12
Coverity found field EntitySaslClient.clientCertUrl is never filled. So probably initially intended behavior in X509Certificate getClientCertificate() method is not covered.
private X509Certificate getClientCertificate() throws SaslException { if ((clientCertChain != null) && (clientCertChain.length > 0)) { return clientCertChain[0]; } else if (clientCertUrl != null) { try { return EntityUtil.getCertificateFromUrl(clientCertUrl); } catch (IOException e) { throw log.mechUnableToObtainServerCertificate(getMechanismName(), clientCertUrl.toString(), e).toSaslException(); } } else { throw log.mechCallbackHandlerNotProvidedServerCertificate(getMechanismName()).toSaslException(); } }
- is cloned by
-
ELY-963 Coverity static analysis, Unwritten field, EntitySaslClient.clientCertUrl (Elytron)
- Resolved
- is incorporated by
-
JBEAP-12932 Upgrade WildFly Core to 4.0.1.Final
- Closed