mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/wtvdec: Check for EOF before seeking back in parse_media_type()
Fixes: Infinite loop
Fixes: 36311/clusterfuzz-testcase-minimized-ffmpeg_dem_WTV_fuzzer-4889181296918528
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by: Peter Ross <pross@xvid.org>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 89505d38de
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
a415c253b4
commit
d64fddb9a8
|
@ -661,6 +661,8 @@ static AVStream * parse_media_type(AVFormatContext *s, AVStream *st, int sid,
|
|||
avio_skip(pb, size - 32);
|
||||
ff_get_guid(pb, &actual_subtype);
|
||||
ff_get_guid(pb, &actual_formattype);
|
||||
if (avio_feof(pb))
|
||||
return NULL;
|
||||
avio_seek(pb, -size, SEEK_CUR);
|
||||
|
||||
st = parse_media_type(s, st, sid, mediatype, actual_subtype, actual_formattype, size - 32);
|
||||
|
|
Loading…
Reference in New Issue