summaryrefslogtreecommitdiff
path: root/crypto/x509v3/v3_lib.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2003-05-28 16:57:08 +0000
committerDr. Stephen Henson <steve@openssl.org>2003-05-28 16:57:08 +0000
commite19d0ef068ab6f7bb9ae36aba61f9384bec21b07 (patch)
tree9b484fdc5321371ab39d680510d24482a62f83fe /crypto/x509v3/v3_lib.c
parentf5f7dffdd11389a58aa18ff00ae9de0189d307de (diff)
downloadopenssl-new-e19d0ef068ab6f7bb9ae36aba61f9384bec21b07.tar.gz
PR: 631
Submitted by: Doug Sauder <dws+001@hunnysoft.com> Fix bug in X509V3_get_d2i() when idx in not NULL.
Diffstat (limited to 'crypto/x509v3/v3_lib.c')
-rw-r--r--crypto/x509v3/v3_lib.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/x509v3/v3_lib.c b/crypto/x509v3/v3_lib.c
index 482ca8ccf5..ca5a4a4a57 100644
--- a/crypto/x509v3/v3_lib.c
+++ b/crypto/x509v3/v3_lib.c
@@ -202,6 +202,7 @@ void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx)
if(OBJ_obj2nid(ex->object) == nid) {
if(idx) {
*idx = i;
+ found_ex = ex;
break;
} else if(found_ex) {
/* Found more than one */