From bee5ee5f0649da8a2496227aa4d149d902543be6 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Thu, 25 Aug 2016 15:58:53 +0100 Subject: [PATCH] Fix uninit read in sslapitest msan detected an uninit read. Reviewed-by: Richard Levitte --- test/sslapitest.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/sslapitest.c b/test/sslapitest.c index cc790a057c..b190145159 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; } -- 2.25.1