Commit 83c7803f authored by Michael Niedermayer's avatar Michael Niedermayer

lagarith: check count before writing zeros.

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 56dcfe87
...@@ -326,6 +326,10 @@ static int lag_decode_zero_run_line(LagarithContext *l, uint8_t *dst, ...@@ -326,6 +326,10 @@ static int lag_decode_zero_run_line(LagarithContext *l, uint8_t *dst,
output_zeros: output_zeros:
if (l->zeros_rem) { if (l->zeros_rem) {
count = FFMIN(l->zeros_rem, width - i); count = FFMIN(l->zeros_rem, width - i);
if(end - dst < count) {
av_log(l->avctx, AV_LOG_ERROR, "too many zeros remaining\n");
return AVERROR_INVALIDDATA;
}
memset(dst, 0, count); memset(dst, 0, count);
l->zeros_rem -= count; l->zeros_rem -= count;
dst += count; dst += count;
......
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