mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
msrledec: use signed pixel_ptr in msrle_decode_pal4
This fixes segmentation faults, when pic->linesize[0] is negative. In that case 'line * pic->linesize[0] + pixel_ptr' is treated as unsigned and wraps around. This reverts commit7d78a964
. The problem was introduced in commitf7e1367f
, which should obsolete that commit. Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
ed2a712750
commit
ae6fd7300b
@ -36,7 +36,7 @@ static int msrle_decode_pal4(AVCodecContext *avctx, AVPicture *pic,
|
|||||||
unsigned char rle_code;
|
unsigned char rle_code;
|
||||||
unsigned char extra_byte, odd_pixel;
|
unsigned char extra_byte, odd_pixel;
|
||||||
unsigned char stream_byte;
|
unsigned char stream_byte;
|
||||||
unsigned int pixel_ptr = 0;
|
int pixel_ptr = 0;
|
||||||
int line = avctx->height - 1;
|
int line = avctx->height - 1;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user