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)
This commit is contained in:
Bernd Edlinger 2017-04-27 01:00:08 +02:00 committed by Richard Levitte
parent 46d5e2b42e
commit 8f3f9623a4

View File

@ -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;