From 8fdf08a19c702a561f9598c1fd9cccacc3e26996 Mon Sep 17 00:00:00 2001 From: Ripinder Singh Date: Fri, 10 Apr 2026 14:20:13 +1000 Subject: [PATCH] 1552 : Initialize rtp handle to avoid crash on free in non rtp VOIP case Signed-off-by: Ripinder Singh --- apps/decoder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/decoder.c b/apps/decoder.c index 3d294790b..cc437dfe8 100644 --- a/apps/decoder.c +++ b/apps/decoder.c @@ -3115,7 +3115,7 @@ static ivas_error printBitstreamInfoVoip( { bool previewFailed = true; ivas_error error = IVAS_ERR_OK; - IVAS_RTP ivasRtp; + IVAS_RTP ivasRtp = { 0 }; uint8_t au[( IVAS_MAX_BITS_PER_FRAME + 7 ) >> 3]; int16_t auSizeBits; uint8_t *auPtr = NULL; -- GitLab