This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch release/7.1
in repository ffmpeg.

commit 02cc0fcb595dc98ec0b56e566d21e21364d89b9e
Author:     Michael Niedermayer <[email protected]>
AuthorDate: Sun May 31 04:39:28 2026 +0200
Commit:     Michael Niedermayer <[email protected]>
CommitDate: Thu Jun 18 20:30:57 2026 +0200

    avformat/iff: check av_get_packet() result in ANIM branch
    
    Fixes: 
494958338/clusterfuzz-testcase-minimized-ffmpeg_dem_IFF_fuzzer-6265824670449664
    Found-by: continuous fuzzing process 
https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <[email protected]>
    (cherry picked from commit 43f712d9172888e31d0edfdb91a89cf8ec440274)
    Signed-off-by: Michael Niedermayer <[email protected]>
---
 libavformat/iff.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavformat/iff.c b/libavformat/iff.c
index 83549f1a0a..075531bb3f 100644
--- a/libavformat/iff.c
+++ b/libavformat/iff.c
@@ -888,6 +888,8 @@ static int iff_read_packet(AVFormatContext *s,
             }
         }
         ret = av_get_packet(pb, pkt, data_size);
+        if (ret < 0)
+            return ret;
         pkt->pos = orig_pos;
         pkt->duration = get_anim_duration(pkt->data, pkt->size);
         if (pos == 12)

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to