[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Fri Apr 28 13:04:35 UTC 2017
The branch master has been updated
via 8f3f9623a46fb4e294a7e4c3db3168002e3f781b (commit)
from 46d5e2b42e00ec392bf3326743519bc25136db09 (commit)
- Log -----------------------------------------------------------------
commit 8f3f9623a46fb4e294a7e4c3db3168002e3f781b
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date: Thu Apr 27 01:00:08 2017 +0200
Fix a pedantic gcc-7 warning.
Reviewed-by: Andy Polyakov <appro at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3328)
-----------------------------------------------------------------------
Summary of changes:
test/clienthellotest.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/clienthellotest.c b/test/clienthellotest.c
index 2de8512..dc58694 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;
More information about the openssl-commits
mailing list