[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

Rich Salz rsalz at openssl.org
Mon May 4 14:54:26 UTC 2015


The branch OpenSSL_1_0_2-stable has been updated
       via  82e586a90b18fa91fb2756af4c36cc70ff097f6d (commit)
      from  a65938663979e5452ce6fc42c82356d671bb5409 (commit)


- Log -----------------------------------------------------------------
commit 82e586a90b18fa91fb2756af4c36cc70ff097f6d
Author: Rich Salz <rsalz at akamai.com>
Date:   Mon May 4 10:34:51 2015 -0400

    Fix cut/paste error
    
    Was memset with wrong sizeof.
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (cherry picked from commit 23b0fa5ab6b6b9f0a9350e24ac5ddb8275802617)

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

Summary of changes:
 crypto/x509/x509_vpm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/x509/x509_vpm.c b/crypto/x509/x509_vpm.c
index ad5c9e8..1ea0c69 100644
--- a/crypto/x509/x509_vpm.c
+++ b/crypto/x509/x509_vpm.c
@@ -181,7 +181,7 @@ X509_VERIFY_PARAM *X509_VERIFY_PARAM_new(void)
         OPENSSL_free(param);
         return NULL;
     }
-    memset(param, 0, sizeof *paramid);
+    memset(param, 0, sizeof *param);
     memset(paramid, 0, sizeof *paramid);
     param->id = paramid;
     x509_verify_param_zero(param);


More information about the openssl-commits mailing list