From 12d37328acb6feb77ef2c0f884dcd3032dd757c1 Mon Sep 17 00:00:00 2001 From: Anthony Hu Date: Mon, 28 Apr 2025 16:13:42 -0400 Subject: [PATCH] Customer reported possible unitialized usage --- src/internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index 19257e5e9..f8655af49 100644 --- a/src/internal.c +++ b/src/internal.c @@ -8353,7 +8353,7 @@ static int DoChannelOpen(WOLFSSH* ssh, static int DoChannelOpenConf(WOLFSSH* ssh, byte* buf, word32 len, word32* idx) { - WOLFSSH_CHANNEL* channel; + WOLFSSH_CHANNEL* channel = NULL; word32 begin, channelId, peerChannelId, peerInitialWindowSz, peerMaxPacketSz; int ret = WS_SUCCESS;