From: Bernd Edlinger Date: Wed, 26 Apr 2017 23:00:08 +0000 (+0200) Subject: Fix a pedantic gcc-7 warning. X-Git-Tag: OpenSSL_1_1_1-pre1~1639 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f3f9623a46fb4e294a7e4c3db3168002e3f781b;p=openssl Fix a pedantic gcc-7 warning. Reviewed-by: Andy Polyakov Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/3328) --- 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;