Browse Source

svq3: check the watermark height.

Fixes division by 0

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 13 years ago
parent
commit
4fa706a4a6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/svq3.c

+ 1
- 1
libavcodec/svq3.c View File

@@ -906,7 +906,7 @@ static av_cold int svq3_decode_init(AVCodecContext *avctx)
int offset = (get_bits_count(&gb)+7)>>3;
uint8_t *buf;

if ((uint64_t)watermark_width*4 > UINT_MAX/watermark_height)
if (watermark_height<=0 || (uint64_t)watermark_width*4 > UINT_MAX/watermark_height)
return -1;

buf = av_malloc(buf_len);


Loading…
Cancel
Save