[openssl-commits] [openssl] OpenSSL_0_9_8-stable update

Dr. Stephen Henson steve at openssl.org
Mon Jun 8 20:48:10 UTC 2015


The branch OpenSSL_0_9_8-stable has been updated
       via  17689e7dc6eb006990c205083c5b07a202f50f7e (commit)
      from  f803a417f7ad13a22d250aeba44ba85911a2b593 (commit)


- Log -----------------------------------------------------------------
commit 17689e7dc6eb006990c205083c5b07a202f50f7e
Author: Dr. Stephen Henson <steve at openssl.org>
Date:   Mon Jun 8 13:23:00 2015 +0100

    return correct NID for undefined object
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>
    (cherry picked from commit 0fb9990480919163cc375a2b6c0df1d8d901a77b)

-----------------------------------------------------------------------

Summary of changes:
 crypto/objects/obj_dat.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/crypto/objects/obj_dat.c b/crypto/objects/obj_dat.c
index 9654775..b7d1b83 100644
--- a/crypto/objects/obj_dat.c
+++ b/crypto/objects/obj_dat.c
@@ -382,6 +382,9 @@ int OBJ_obj2nid(const ASN1_OBJECT *a)
     if (a->nid != 0)
         return (a->nid);
 
+    if (a->length == 0)
+        return NID_undef;
+
     if (added != NULL) {
         ad.type = ADDED_DATA;
         ad.obj = (ASN1_OBJECT *)a; /* XXX: ugly but harmless */


More information about the openssl-commits mailing list