From 5d8ce306349aabcf40da0324242025aac3cc56e4 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Wed, 23 Nov 2016 16:06:46 +0000 Subject: [PATCH] Fix an uninit variable usage Reviewed-by: Rich Salz --- test/asynciotest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/asynciotest.c b/test/asynciotest.c index d7b1dd3860..e14747265d 100644 --- a/test/asynciotest.c +++ b/test/asynciotest.c @@ -144,7 +144,7 @@ static int async_write(BIO *bio, const char *in, int inl) while (PACKET_remaining(&pkt) > 0) { PACKET payload, wholebody; unsigned int contenttype, versionhi, versionlo, data; - unsigned int msgtype = 0, negversion; + unsigned int msgtype = 0, negversion = 0; if ( !PACKET_get_1(&pkt, &contenttype) || !PACKET_get_1(&pkt, &versionhi) -- 2.34.1