projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
927ddaf
)
fix previous modification -- if ssl->cert is NULL, don't follow the pointer.
author
Bodo Möller
<bodo@openssl.org>
Mon, 2 Aug 1999 20:09:23 +0000
(20:09 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Mon, 2 Aug 1999 20:09:23 +0000
(20:09 +0000)
ssl/ssl_lib.c
patch
|
blob
|
history
diff --git
a/ssl/ssl_lib.c
b/ssl/ssl_lib.c
index 0b30ccf9183860d17d367c832bbfbd99d34137cb..72b7e3aa4e2af3cc153be0d0d8f4e49d1178eeda 100644
(file)
--- a/
ssl/ssl_lib.c
+++ b/
ssl/ssl_lib.c
@@
-575,6
+575,8
@@
int SSL_check_private_key(SSL *ssl)
SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,ERR_R_PASSED_NULL_PARAMETER);
return(0);
}
+ if (ssl->cert == NULL)
+ return 0;
if (ssl->cert->key->x509 == NULL)
{
SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);