Fix typo in OBJ_txt2obj which incorrectly passed the content
authorDr. Stephen Henson <steve@openssl.org>
Wed, 14 Aug 2002 00:48:02 +0000 (00:48 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Wed, 14 Aug 2002 00:48:02 +0000 (00:48 +0000)
length, instead of the encoding length to d2i_ASN1_OBJECT.

This wasn't visible before becuse ASN1_get_object() used
to read past the length of the supplied buffer.

CHANGES
crypto/objects/obj_dat.c

diff --git a/CHANGES b/CHANGES
index 15b69a3f3d4a54f50fd9ab27b3cc85bb69d9db2a..c6b51e9f2a926a6fdb41f3da380bf30294cbaccb 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1908,6 +1908,12 @@ des-cbc           3624.96k     5258.21k     5530.91k     5624.30k     5628.26k
   *) Clean old EAY MD5 hack from e_os.h.
      [Richard Levitte]
 
   *) Clean old EAY MD5 hack from e_os.h.
      [Richard Levitte]
 
+ Changes between 0.9.6g and 0.9.6h  [xx XXX xxxx]
+
+  *) Fix typo in OBJ_txt2obj which incorrectly passed the content
+     length, instead of the encoding length to d2i_ASN1_OBJECT.
+     [Steve Henson]
+
  Changes between 0.9.6f and 0.9.6g  [9 Aug 2002]
 
   *) [In 0.9.6g-engine release:]
  Changes between 0.9.6f and 0.9.6g  [9 Aug 2002]
 
   *) [In 0.9.6g-engine release:]
index 02c3719f04e6009903e6628b298e6db9265e6d77..ce779dc1b5beb143bf300e552ed0767078060bf3 100644 (file)
@@ -425,7 +425,7 @@ ASN1_OBJECT *OBJ_txt2obj(const char *s, int no_name)
        a2d_ASN1_OBJECT(p,i,s,-1);
        
        p=buf;
        a2d_ASN1_OBJECT(p,i,s,-1);
        
        p=buf;
-       op=d2i_ASN1_OBJECT(NULL,&p,i);
+       op=d2i_ASN1_OBJECT(NULL,&p,j);
        OPENSSL_free(buf);
        return op;
        }
        OPENSSL_free(buf);
        return op;
        }