Module: libav Branch: release/11 Commit: 85947f316f687e0235d55e1b8ce7b4abc634f202
Author: Anton Khirnov <[email protected]> Committer: Anton Khirnov <[email protected]> Date: Sun Aug 14 10:18:39 2016 +0200 vc1: check that slices have a positive height Fixes possible invalid reads. CC: [email protected] Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind (cherry picked from commit 33f10546ec012ad4e1054b57317885cded7e953e) Signed-off-by: Anton Khirnov <[email protected]> --- libavcodec/vc1dec.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index 37f5d7c..70ed3fb 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -6069,6 +6069,12 @@ static int vc1_decode_frame(AVCodecContext *avctx, void *data, s->end_mb_y = (i == n_slices ) ? mb_height : FFMIN(mb_height, slices[i].mby_start % mb_height); else s->end_mb_y = (i <= n_slices1 + 1) ? mb_height : FFMIN(mb_height, slices[i].mby_start % mb_height); + + if (s->end_mb_y <= s->start_mb_y) { + av_log(v->s.avctx, AV_LOG_ERROR, "Invalid slice size\n"); + goto err; + } + ff_vc1_decode_blocks(v); if (i != n_slices) s->gb = slices[i].gb; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
