[openssl-commits] [openssl] master update

Dr. Stephen Henson steve at openssl.org
Fri Apr 10 18:51:12 UTC 2015


The branch master has been updated
       via  f617b4969a9261b9d7d381670aefbe2cf766a2cb (commit)
      from  9fdbc9df76a68a30df349c53f1ceeb915f82948c (commit)


- Log -----------------------------------------------------------------
commit f617b4969a9261b9d7d381670aefbe2cf766a2cb
Author: Dr. Stephen Henson <steve at openssl.org>
Date:   Thu Apr 2 13:45:14 2015 +0100

    Don't set *pval to NULL in ASN1_item_ex_new.
    
    While *pval is usually a pointer in rare circumstances it can be a long
    value. One some platforms (e.g. WIN64) where
    sizeof(long) < sizeof(ASN1_VALUE *) this will write past the field.
    
    *pval is initialised correctly in the rest of ASN1_item_ex_new so setting it
    to NULL is unecessary anyway.
    
    Thanks to Julien Kauffmann for reporting this issue.
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>

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

Summary of changes:
 crypto/asn1/tasn_new.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/crypto/asn1/tasn_new.c b/crypto/asn1/tasn_new.c
index 1b36ecc..aeced95 100644
--- a/crypto/asn1/tasn_new.c
+++ b/crypto/asn1/tasn_new.c
@@ -94,8 +94,6 @@ int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
     else
         asn1_cb = 0;
 
-    *pval = NULL;
-
 #ifdef CRYPTO_MDEBUG
     if (it->sname)
         CRYPTO_push_info(it->sname);


More information about the openssl-commits mailing list