[FFmpeg-cvslog] avformat/apetag: Check APETAGEX

Michael Niedermayer git at videolan.org
Wed Aug 28 18:39:53 EEST 2024


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Mon Aug 19 17:02:12 2024 +0200| [796ff2d599449ed798b69ab798ebcbcc0a5853f5] | committer: Michael Niedermayer

avformat/apetag: Check APETAGEX

Fixes: Use of uninitialized value
Fixes: 71074/clusterfuzz-testcase-minimized-ffmpeg_IO_DEMUXER_fuzzer-5697034877730816

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=796ff2d599449ed798b69ab798ebcbcc0a5853f5
---

 libavformat/apetag.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavformat/apetag.c b/libavformat/apetag.c
index bd0a19e4d6..0989fcb094 100644
--- a/libavformat/apetag.c
+++ b/libavformat/apetag.c
@@ -121,7 +121,8 @@ int64_t ff_ape_parse_tag(AVFormatContext *s)
 
     avio_seek(pb, file_size - APE_TAG_FOOTER_BYTES, SEEK_SET);
 
-    avio_read(pb, buf, 8);     /* APETAGEX */
+    if(avio_read(pb, buf, 8) != 8)     /* APETAGEX */
+        return 0;
     if (strncmp(buf, APE_TAG_PREAMBLE, 8)) {
         return 0;
     }



More information about the ffmpeg-cvslog mailing list