[openssl-commits] [openssl] master update

Andy Polyakov appro at openssl.org
Sun Feb 22 18:15:44 UTC 2015


The branch master has been updated
       via  1526fea5441f0b6256b298b30ba9fcb3e3ecd930 (commit)
      from  15b5d6585de098e48acebc8366a9956ee57c8f2d (commit)


- Log -----------------------------------------------------------------
commit 1526fea5441f0b6256b298b30ba9fcb3e3ecd930
Author: Andy Polyakov <appro at openssl.org>
Date:   Sun Feb 22 19:13:35 2015 +0100

    evp/evp_test.c: avoid crashes when referencing uninitialized pointers.
    
    For some reason failure surfaced on ARM platforms.
    
    Reviewed-by: Matt Caswell <matt at openssl.org>

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

Summary of changes:
 crypto/evp/evp_test.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/crypto/evp/evp_test.c b/crypto/evp/evp_test.c
index 7706ee1..fb8ac4f 100644
--- a/crypto/evp/evp_test.c
+++ b/crypto/evp/evp_test.c
@@ -454,6 +454,8 @@ int main(int argc, char **argv)
 
     ERR_load_crypto_strings();
     OpenSSL_add_all_algorithms();
+
+    memset(&t,0,sizeof(t));
     t.meth = NULL;
     t.public = NULL;
     t.private = NULL;


More information about the openssl-commits mailing list