diff options
author | wm4 <nfxjfg@googlemail.com> | 2015-01-07 23:57:50 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-09 17:18:41 +0100 |
commit | 2ba1af5791fc405ad648851344fe6dd83d1c92c1 (patch) | |
tree | 918cfee4e46ac4ca13dd1a45e069631a7abd8f35 | |
parent | 51e880fed97faae571a872cf51a6960e9f172094 (diff) | |
download | ffmpeg-2ba1af5791fc405ad648851344fe6dd83d1c92c1.tar.gz |
avcodec/dvdsubdec: error on bitmaps with size 0
Attemtping to decode them could lead to invalid writes with some fuzzed
samples.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit bcaa9099b3648b47060e1724a97dc98b63c83702)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/dvdsubdec.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/dvdsubdec.c b/libavcodec/dvdsubdec.c index 5e225566b7..28027c233e 100644 --- a/libavcodec/dvdsubdec.c +++ b/libavcodec/dvdsubdec.c @@ -108,6 +108,9 @@ static int decode_rle(uint8_t *bitmap, int linesize, int w, int h, if (start >= buf_size) return -1; + if (w <= 0 || h <= 0) + return -1; + bit_len = (buf_size - start) * 8; init_get_bits(&gb, buf + start, bit_len); |