avformat/xwma: Check for EOF in dpds_table read code
Fixes: Timeout (>30 -> 140ms)
Fixes: 26478/clusterfuzz-testcase-minimized-ffmpeg_dem_XWMA_fuzzer-5918147066200064
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 44b18a76b8
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -211,6 +211,10 @@ static int xwma_read_header(AVFormatContext *s)
|
||||
}
|
||||
|
||||
for (i = 0; i < dpds_table_size; ++i) {
|
||||
if (avio_feof(pb)) {
|
||||
ret = AVERROR_INVALIDDATA;
|
||||
goto fail;
|
||||
}
|
||||
dpds_table[i] = avio_rl32(pb);
|
||||
size -= 4;
|
||||
}
|
||||
|
Reference in New Issue
Block a user