targa: use checked bytestream read

Fix out of array read

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/8/head
Michael Niedermayer 12 years ago
parent 2b12d1ffd8
commit 7cb46b5191
  1. 2
      libavcodec/targa.c

@ -267,7 +267,7 @@ static int decode_frame(AVCodecContext *avctx,
line = dst;
y = 0;
do {
bytestream2_get_bufferu(&s->gb, line, img_size);
bytestream2_get_buffer(&s->gb, line, img_size);
line = advance_line(dst, line, stride, &y, h, interleave);
} while (line);
}

Loading…
Cancel
Save