]> git.sesse.net Git - ffmpeg/commitdiff
svq3: Avoid a division by zero
authorMartin Storsjö <martin@martin.st>
Thu, 19 Sep 2013 12:58:59 +0000 (15:58 +0300)
committerMartin Storsjö <martin@martin.st>
Thu, 19 Sep 2013 19:45:16 +0000 (22:45 +0300)
If the height is zero, the decompression will probably end up
failing due to not fitting into the allocated buffer later
anyway, so this doesn't need any more elaborate check.

Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: libav-stable@libav.org
Signed-off-by: Martin Storsjö <martin@martin.st>
libavcodec/svq3.c

index 82fa6327129af072cfa5c60b9a2fd5d871dde810..a345788fb5aae31838bfe5b89b3e9ac3a0e0cc0b 100644 (file)
@@ -980,7 +980,8 @@ 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);