return correct NID for undefined object
authorDr. Stephen Henson <steve@openssl.org>
Mon, 8 Jun 2015 12:23:00 +0000 (13:23 +0100)
committerDr. Stephen Henson <steve@openssl.org>
Mon, 8 Jun 2015 20:47:24 +0000 (21:47 +0100)
Reviewed-by: Tim Hudson <tjh@openssl.org>
(cherry picked from commit 0fb9990480919163cc375a2b6c0df1d8d901a77b)

crypto/objects/obj_dat.c

index e42a1c147de8e8bfd9fc2834e244ea4762b226ae..454733db89eb4d7f4dd574ec1086d901c056cf34 100644 (file)
@@ -415,6 +415,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 */