diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-10-14 23:17:51 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-11-09 13:46:21 +0100 |
commit | 114ddf64300fa78663ef35decbee89b5492abb1d (patch) | |
tree | c3f132d65562537cd0c7b3451efc673952cb0f5b | |
parent | 55279d699fa64d8eb1185d8db04ab4ed92e8dea2 (diff) | |
download | ffmpeg-streaming-114ddf64300fa78663ef35decbee89b5492abb1d.zip ffmpeg-streaming-114ddf64300fa78663ef35decbee89b5492abb1d.tar.gz |
avformat/vividas: Fix n_sb_blocks Check
Fixes: signed integer overflow: 1540265776 * 2 cannot be represented in type 'int'
Fixes: 18160/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5758808818712576
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/vividas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/vividas.c b/libavformat/vividas.c index efe1b8d..ab39478 100644 --- a/libavformat/vividas.c +++ b/libavformat/vividas.c @@ -438,7 +438,7 @@ static int track_index(VividasDemuxContext *viv, AVFormatContext *s, uint8_t *bu ffio_read_varlen(pb); // track_index_len avio_r8(pb); // 'c' viv->n_sb_blocks = ffio_read_varlen(pb); - if (viv->n_sb_blocks * 2 > size) + if (viv->n_sb_blocks < 0 || viv->n_sb_blocks > size / 2) goto error; viv->sb_blocks = av_calloc(viv->n_sb_blocks, sizeof(VIV_SB_block)); if (!viv->sb_blocks) { |