mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/id3v2: Check the return from avio_get_str()
Fixes: out of array access Fixes: 29446/clusterfuzz-testcase-minimized-ffmpeg_dem_AAC_fuzzer-5096222622875648 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
7a23952614
commit
25f240fcb3
@ -605,7 +605,10 @@ static void read_apic(AVFormatContext *s, AVIOContext *pb, int taglen,
|
||||
|
||||
/* mimetype */
|
||||
if (isv34) {
|
||||
taglen -= avio_get_str(pb, taglen, mimetype, sizeof(mimetype));
|
||||
int ret = avio_get_str(pb, taglen, mimetype, sizeof(mimetype));
|
||||
if (ret < 0 || ret >= taglen)
|
||||
goto fail;
|
||||
taglen -= ret;
|
||||
} else {
|
||||
if (avio_read(pb, mimetype, 3) < 0)
|
||||
goto fail;
|
||||
|
Loading…
Reference in New Issue
Block a user