From f94fe4f5a6d3475ffdf6dcf359900777126e9e6c Mon Sep 17 00:00:00 2001 From: Jacob Barthelmeh Date: Wed, 1 Jul 2020 17:28:14 -0600 Subject: [PATCH] initialize list values --- src/internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index f4084dd..c1ce00b 100644 --- a/src/internal.c +++ b/src/internal.c @@ -2027,7 +2027,7 @@ static int DoKexInit(WOLFSSH* ssh, byte* buf, word32 len, word32* idx) int ret = WS_SUCCESS; int side; byte algoId; - byte list[6]; + byte list[6] = {0}; word32 listSz; word32 skipSz; word32 begin;