diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2015-09-16 01:24:43 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2015-09-16 23:17:39 +0200 |
commit | 7aef39a72a2d3a7a2b0e222137a45e1b1406668d (patch) | |
tree | d661ce23600131e13331e3dfc87a46e8051fa989 /crypto/x509/x509_lu.c | |
parent | Change X509_VAL in X509 structure to embedded. (diff) | |
download | openssl-7aef39a72a2d3a7a2b0e222137a45e1b1406668d.tar.xz openssl-7aef39a72a2d3a7a2b0e222137a45e1b1406668d.zip |
X509_CRL_INFO embed
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/x509/x509_lu.c')
-rw-r--r-- | crypto/x509/x509_lu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/crypto/x509/x509_lu.c b/crypto/x509/x509_lu.c index c53f1e5117..1c08eb044d 100644 --- a/crypto/x509/x509_lu.c +++ b/crypto/x509/x509_lu.c @@ -422,7 +422,6 @@ static int x509_object_idx_cnt(STACK_OF(X509_OBJECT) *h, int type, X509 x509_s; X509_CINF cinf_s; X509_CRL crl_s; - X509_CRL_INFO crl_info_s; int idx; stmp.type = type; @@ -434,8 +433,7 @@ static int x509_object_idx_cnt(STACK_OF(X509_OBJECT) *h, int type, break; case X509_LU_CRL: stmp.data.crl = &crl_s; - crl_s.crl = &crl_info_s; - crl_info_s.issuer = name; + crl_s.crl.issuer = name; break; default: /* abort(); */ |