Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
[FIXED JENKINS-19175] NPE when client certificates are used(cherry pi…
Browse files Browse the repository at this point in the history
…cked from commit b0dcea1)
  • Loading branch information
stephenc authored and kohsuke committed Mar 12, 2014
1 parent 2994f45 commit 68b7672
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -184,7 +184,7 @@ public KeyManager[] loadClientCertificate(SVNSSLAuthentication sslAuthentication

KeyManager[] result = null;
KeyStore keyStore = null;
if (clientCertFile != null && clientCertPath.startsWith(SVNSSLAuthentication.MSCAPI)) {
if (clientCertPath != null && clientCertPath.startsWith(SVNSSLAuthentication.MSCAPI)) {
SVNDebugLog.getDefaultLog().logError(SVNLogType.CLIENT,"using mscapi");
try {
keyStore = KeyStore.getInstance("Windows-MY");
Expand Down

0 comments on commit 68b7672

Please sign in to comment.