From 6de2565b8e6f739c0e80e0acc30fb5dbe7a9dd2c Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sat, 21 Feb 2026 16:03:21 +0100 Subject: [PATCH] avformat/rtpdec_xiph: Fix shadowing Signed-off-by: Andreas Rheinhardt --- libavformat/rtpdec_xiph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtpdec_xiph.c b/libavformat/rtpdec_xiph.c index 23924f2363..98e4db48f9 100644 --- a/libavformat/rtpdec_xiph.c +++ b/libavformat/rtpdec_xiph.c @@ -187,7 +187,7 @@ static int xiph_handle_packet(AVFormatContext *ctx, PayloadContext *data, if (fragmented == 3) { // end of xiph data packet - int ret = ff_rtp_finalize_packet(pkt, &data->fragment, st->index); + ret = ff_rtp_finalize_packet(pkt, &data->fragment, st->index); if (ret < 0) { av_log(ctx, AV_LOG_ERROR, "Error occurred when getting fragment buffer.");