Commit c0d68be5 authored by Michael Niedermayer's avatar Michael Niedermayer

pgssubdec: check RLE size before copying. Fix out of array accesses

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent bc08ca84
...@@ -222,6 +222,11 @@ static int parse_picture_segment(AVCodecContext *avctx, ...@@ -222,6 +222,11 @@ static int parse_picture_segment(AVCodecContext *avctx,
return -1; return -1;
} }
if (buf_size > rle_bitmap_len) {
av_log(avctx, AV_LOG_ERROR, "too much RLE data\n");
return AVERROR_INVALIDDATA;
}
ctx->pictures[picture_id].w = width; ctx->pictures[picture_id].w = width;
ctx->pictures[picture_id].h = height; ctx->pictures[picture_id].h = height;
......
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