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

Matt Caswell matt at openssl.org
Mon Aug 22 09:27:02 UTC 2016


The branch OpenSSL_1_0_2-stable has been updated
       via  0ee4f13bbaa4de952baf1c9de6c47bbf693711dd (commit)
      from  eca5174b5f448d3fc5a9401d76983ce2cf9e2194 (commit)


- Log -----------------------------------------------------------------
commit 0ee4f13bbaa4de952baf1c9de6c47bbf693711dd
Author: Matt Caswell <matt at openssl.org>
Date:   Mon Aug 22 09:09:06 2016 +0100

    Silence some "maybe used uninitialised" warnings
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>

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

Summary of changes:
 ssl/d1_both.c       | 2 +-
 ssl/sslv2conftest.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ssl/d1_both.c b/ssl/d1_both.c
index c412711..5d2c209 100644
--- a/ssl/d1_both.c
+++ b/ssl/d1_both.c
@@ -1211,7 +1211,7 @@ dtls1_retransmit_message(SSL *s, unsigned short seq, unsigned long frag_off,
     unsigned long header_length;
     unsigned char seq64be[8];
     struct dtls1_retransmit_state saved_state;
-    unsigned char save_write_sequence[8];
+    unsigned char save_write_sequence[8] = {0, 0, 0, 0, 0, 0, 0, 0};
 
     /*-
       OPENSSL_assert(s->init_num == 0);
diff --git a/ssl/sslv2conftest.c b/ssl/sslv2conftest.c
index 1fd748b..2aed995 100644
--- a/ssl/sslv2conftest.c
+++ b/ssl/sslv2conftest.c
@@ -84,7 +84,7 @@ int main(int argc, char *argv[])
 {
     BIO *err;
     int testresult = 0;
-    int currtest;
+    int currtest = 0;
 
     SSL_library_init();
     SSL_load_error_strings();


More information about the openssl-commits mailing list