Commit 98b7a50a authored by Michael Niedermayer's avatar Michael Niedermayer

tiffdec: Fix runend handling

Fixes Ticket1999
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d4d8d4f7
...@@ -163,8 +163,6 @@ static int decode_group3_2d_line(AVCodecContext *avctx, GetBitContext *gb, ...@@ -163,8 +163,6 @@ static int decode_group3_2d_line(AVCodecContext *avctx, GetBitContext *gb,
int run_off = *ref++; int run_off = *ref++;
unsigned int offs=0, run= 0; unsigned int offs=0, run= 0;
runend--; // for the last written 0
while(offs < width){ while(offs < width){
int cmode = get_vlc2(gb, ccitt_group3_2d_vlc.table, 9, 1); int cmode = get_vlc2(gb, ccitt_group3_2d_vlc.table, 9, 1);
if(cmode == -1){ if(cmode == -1){
...@@ -234,7 +232,13 @@ static int decode_group3_2d_line(AVCodecContext *avctx, GetBitContext *gb, ...@@ -234,7 +232,13 @@ static int decode_group3_2d_line(AVCodecContext *avctx, GetBitContext *gb,
} }
} }
*runs++ = saved_run; *runs++ = saved_run;
if (saved_run) {
if(runs >= runend){
av_log(avctx, AV_LOG_ERROR, "Run overrun\n");
return -1;
}
*runs++ = 0; *runs++ = 0;
}
return 0; return 0;
} }
......
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