Commit 0fa8d199 authored by Baptiste Coudurier's avatar Baptiste Coudurier Committed by Michael Niedermayer

In svq3 decoder, check negative mb_type, fix potential crash.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6c284560
......@@ -1049,7 +1049,7 @@ static int svq3_decode_frame(AVCodecContext *avctx,
} else if (s->pict_type == AV_PICTURE_TYPE_B && mb_type >= 4) {
mb_type += 4;
}
if (mb_type > 33 || svq3_decode_mb(svq3, mb_type)) {
if ((unsigned)mb_type > 33 || svq3_decode_mb(svq3, mb_type)) {
av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding MB %d %d\n", s->mb_x, s->mb_y);
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment