This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 615d5c2715c4b60f0b21016c55a7eedae31c24d4 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Sat Feb 21 15:53:51 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Tue Mar 10 13:52:18 2026 +0100 avformat/dsfdec: Fix shadowing Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavformat/dsfdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/dsfdec.c b/libavformat/dsfdec.c index 17e109e345..87a5fd0272 100644 --- a/libavformat/dsfdec.c +++ b/libavformat/dsfdec.c @@ -175,7 +175,7 @@ static int dsf_read_packet(AVFormatContext *s, AVPacket *pkt) int64_t packet_size = dsf->audio_size - data_pos; int64_t skip_size = dsf->data_size - data_pos - packet_size; uint8_t *dst; - int ch, ret; + int ch; if (packet_size <= 0 || skip_size <= 0) return AVERROR_INVALIDDATA; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
