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:
46e64f6
)
Always initialize X509_STORE_CTX get_crl pointer
author
Viktor Dukhovni
<openssl-users@dukhovni.org>
Thu, 14 Jan 2016 17:23:35 +0000
(12:23 -0500)
committer
Viktor Dukhovni
<openssl-users@dukhovni.org>
Thu, 14 Jan 2016 17:29:16 +0000
(12:29 -0500)
Reviewed-by: Rich Salz <rsalz@openssl.org>
crypto/x509/x509_vfy.c
patch
|
blob
|
history
diff --git
a/crypto/x509/x509_vfy.c
b/crypto/x509/x509_vfy.c
index 73339f3fd45fc1d8de4eb82c7c352fd93eff829c..c395acc0128fd28c1343f99be233a5b908477b6e 100644
(file)
--- a/
crypto/x509/x509_vfy.c
+++ b/
crypto/x509/x509_vfy.c
@@
-2150,6
+2150,8
@@
int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509,
if (store && store->get_crl)
ctx->get_crl = store->get_crl;
+ else
+ ctx->get_crl = NULL;
if (store && store->check_crl)
ctx->check_crl = store->check_crl;