mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
vc1: check that slices have a positive height
Fixes possible invalid reads. CC: libav-stable@libav.org Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
This commit is contained in:
parent
09b23786b3
commit
33f10546ec
@ -881,6 +881,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;
|
||||
|
Loading…
Reference in New Issue
Block a user