Browse Source

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>
tags/n4.3.2
Michael Niedermayer 5 years ago
parent
commit
a0db3ad5d5
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      libavformat/xwma.c

+ 4
- 0
libavformat/xwma.c View File

@@ -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;
}


Loading…
Cancel
Save