summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernd Edlinger <bernd.edlinger@hotmail.de>2017-04-27 01:00:08 +0200
committerRichard Levitte <levitte@openssl.org>2017-04-28 15:04:08 +0200
commit8f3f9623a46fb4e294a7e4c3db3168002e3f781b (patch)
tree89f01690a6b10c54baf5ce9e8b64adfc6d1e22d7
parent46d5e2b42e00ec392bf3326743519bc25136db09 (diff)
downloadopenssl-new-8f3f9623a46fb4e294a7e4c3db3168002e3f781b.tar.gz
Fix a pedantic gcc-7 warning.
Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3328)
-rw-r--r--test/clienthellotest.c2
1 files changed, 1 insertions, 1 deletions
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;