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>
This commit is contained in:
parent
2b12d1ffd8
commit
7cb46b5191
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue