diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-11-11 22:15:21 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-11-11 22:15:21 +0000 |
commit | bdb4cf312bb57e75d91c0b6c4b3b47fc10463260 (patch) | |
tree | 159bb0ea93999f8989ed1fc59ad8981ac286c1e1 /lib/libcrypto/x509v3/v3_lib.c | |
parent | 122826059125660856e13fb3df457cb87744c415 (diff) |
merge 0.9.7c; minor bugsfixes;
API addition: ERR_release_err_state_table
[make includes before you build libssl/libcrypto]
Diffstat (limited to 'lib/libcrypto/x509v3/v3_lib.c')
-rw-r--r-- | lib/libcrypto/x509v3/v3_lib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libcrypto/x509v3/v3_lib.c b/lib/libcrypto/x509v3/v3_lib.c index 482ca8ccf5d..ca5a4a4a570 100644 --- a/lib/libcrypto/x509v3/v3_lib.c +++ b/lib/libcrypto/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 */ |