Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2022-07-22 00:27:59 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2022-09-25 14:51:49 +0300
commitcd76f3ed591beba5c64b57fa7fcc596acc678c4c (patch)
treeec4c897d910f29607d57b9d3082c80a5787df9d1
parentff6d408ac0370058a6d0e039881eef02b0b122d0 (diff)
avcodec/tiff: Check tile_length and tile_width
Fixes: Division by 0 Fixes: 49235/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TIFF_fuzzer-5495613847896064 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 76112c2b4167bb3c40503b3334c8b38fd707a8d5) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/tiff.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c
index 19fa4ac350..4be9ad1735 100644
--- a/libavcodec/tiff.c
+++ b/libavcodec/tiff.c
@@ -977,6 +977,9 @@ static int dng_decode_tiles(AVCodecContext *avctx, AVFrame *frame,
int pos_x = 0, pos_y = 0;
int ret;
+ if (s->tile_width <= 0 || s->tile_length <= 0)
+ return AVERROR_INVALIDDATA;
+
has_width_leftover = (s->width % s->tile_width != 0);
has_height_leftover = (s->height % s->tile_length != 0);