mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-13 18:40:03 +01:00
avformat/flvdec: Check for EOF in index reading
Fixes: Timeout
Fixes: 47992/clusterfuzz-testcase-minimized-ffmpeg_dem_LIVE_FLV_fuzzer-6020443879899136
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit ceff5d7b74)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -363,6 +363,8 @@ static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc,
|
|||||||
goto invalid;
|
goto invalid;
|
||||||
if (current_array == × && (d <= INT64_MIN / 1000 || d >= INT64_MAX / 1000))
|
if (current_array == × && (d <= INT64_MIN / 1000 || d >= INT64_MAX / 1000))
|
||||||
goto invalid;
|
goto invalid;
|
||||||
|
if (avio_feof(ioc))
|
||||||
|
goto invalid;
|
||||||
current_array[0][i] = d;
|
current_array[0][i] = d;
|
||||||
}
|
}
|
||||||
if (times && filepositions) {
|
if (times && filepositions) {
|
||||||
|
|||||||
Reference in New Issue
Block a user