[FFmpeg-cvslog] avformat/id3v2: read_uslt() check for the amount read

Michael Niedermayer git at videolan.org
Sun Apr 14 21:33:12 EEST 2024


ffmpeg | branch: release/4.4 | Michael Niedermayer <michael at niedermayer.cc> | Wed Mar 20 03:51:05 2024 +0100| [3fc4d5d1d8b497aa716e11c2fcd993ba5b7479eb] | committer: Michael Niedermayer

avformat/id3v2: read_uslt() check for the amount read

Fixes: timeout
Fixes: 66783/clusterfuzz-testcase-minimized-ffmpeg_dem_GENH_fuzzer-5356884892647424

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

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

 libavformat/id3v2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c
index a40f858477..9398897873 100644
--- a/libavformat/id3v2.c
+++ b/libavformat/id3v2.c
@@ -365,7 +365,7 @@ static void read_uslt(AVFormatContext *s, AVIOContext *pb, int taglen,
     int encoding;
     int ok = 0;
 
-    if (taglen < 1)
+    if (taglen < 4)
         goto error;
 
     encoding = avio_r8(pb);



More information about the ffmpeg-cvslog mailing list