From 8f3f9623a46fb4e294a7e4c3db3168002e3f781b Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Thu, 27 Apr 2017 01:00:08 +0200 Subject: Fix a pedantic gcc-7 warning. Reviewed-by: Andy Polyakov Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/3328) --- test/clienthellotest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/clienthellotest.c b/test/clienthellotest.c index 2de85128e3..dc58694c7d 100644 --- a/test/clienthellotest.c +++ b/test/clienthellotest.c @@ -57,7 +57,7 @@ static int test_client_hello(int currtest) BIO *wbio; long len; unsigned char *data; - PACKET pkt, pkt2, pkt3; + PACKET pkt = {0}, pkt2 = {0}, pkt3 = {0}; char *dummytick = "Hello World!"; unsigned int type = 0; int testresult = 0; -- cgit v1.2.3