[openssl-commits] [openssl] master update

Matt Caswell matt at openssl.org
Thu Aug 25 15:01:29 UTC 2016


The branch master has been updated
       via  bee5ee5f0649da8a2496227aa4d149d902543be6 (commit)
      from  eedb9db9afd531e9dc69a33b73c7e1cd27153b0b (commit)


- Log -----------------------------------------------------------------
commit bee5ee5f0649da8a2496227aa4d149d902543be6
Author: Matt Caswell <matt at openssl.org>
Date:   Thu Aug 25 15:58:53 2016 +0100

    Fix uninit read in sslapitest
    
    msan detected an uninit read.
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>

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

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

diff --git a/test/sslapitest.c b/test/sslapitest.c
index cc790a0..b190145 100644
--- a/test/sslapitest.c
+++ b/test/sslapitest.c
@@ -467,6 +467,7 @@ static SSL_BIO_TEST_FIXTURE ssl_bio_set_up(const char *const test_case_name)
 
     fixture.test_case_name = test_case_name;
     fixture.pop_ssl = 0;
+    fixture.change_bio = NO_BIO_CHANGE;
 
     return fixture;
 }


More information about the openssl-commits mailing list