[FFmpeg-devel] [PATCH 3/3] avcodec/pictordec: Error out if more than one plane is unused
Michael Niedermayer
michael at niedermayer.cc
Wed Sep 12 04:08:08 EEST 2018
Fixes: Timeout
Fixes: 9797/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PICTOR_fuzzer-5664441659031552
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
libavcodec/pictordec.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/libavcodec/pictordec.c b/libavcodec/pictordec.c
index b29a484534..65d2d49060 100644
--- a/libavcodec/pictordec.c
+++ b/libavcodec/pictordec.c
@@ -236,6 +236,9 @@ static int decode_frame(AVCodecContext *avctx,
}
}
+ if (s->nb_planes - plane > 1)
+ return AVERROR_INVALIDDATA;
+
if (plane < s->nb_planes && x < avctx->width) {
int run = (y + 1) * avctx->width - x;
if (bits_per_plane == 8)
--
2.18.0
More information about the ffmpeg-devel
mailing list