Commit 24152d66 authored by Vladimir Malenovsky's avatar Vladimir Malenovsky
Browse files

Merge branch '1552-fix-for-crash-rtp-term' into 'main'

1552 : Initialize rtp handle to avoid crash on free in non rtp VOIP case

See merge request !2582
parents 69d52e95 7a324a7d
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;