Customer reported possible unitialized usage

pull/799/head
Anthony Hu 2025-04-28 16:13:42 -04:00
parent ea5f28d943
commit 12d37328ac
1 changed files with 1 additions and 1 deletions

View File

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