[openssl-commits] [openssl] master update

Matt Caswell matt at openssl.org
Sat Jul 30 09:41:06 UTC 2016


The branch master has been updated
       via  0fae81501a80fae6e96942f8d766daf4c61defc7 (commit)
      from  44c248b5acc7fe3e48fa7b08bbc71fbb10650cdb (commit)


- Log -----------------------------------------------------------------
commit 0fae81501a80fae6e96942f8d766daf4c61defc7
Author: Matt Caswell <matt at openssl.org>
Date:   Sat Jul 30 10:37:53 2016 +0100

    Fix bogus warnings
    
    Fix some bogus "may be used uninitialized" warnings on some compilers.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

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

Summary of changes:
 test/sslapitest.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/sslapitest.c b/test/sslapitest.c
index 5fc552d..cb86217 100644
--- a/test/sslapitest.c
+++ b/test/sslapitest.c
@@ -352,7 +352,7 @@ static int test_ssl_set_bio(int idx)
     SSL_CTX *ctx = SSL_CTX_new(TLS_method());
     BIO *bio1 = NULL;
     BIO *bio2 = NULL;
-    BIO *irbio, *iwbio, *nrbio, *nwbio;
+    BIO *irbio = NULL, *iwbio = NULL, *nrbio = NULL, *nwbio = NULL;
     SSL *ssl = NULL;
     int initrbio, initwbio, newrbio, newwbio;
     int testresult = 0;


More information about the openssl-commits mailing list