mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
sp5xdec: fix off by 1 error causing a crash
Fixes Ticket1633 Found-by: Piotr Bandurski <ami_stuff@o2.pl> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
747774ece9
commit
f0896a6bd9
@ -72,7 +72,7 @@ static int sp5x_decode_frame(AVCodecContext *avctx,
|
||||
for (i = 2; i < buf_size-2 && j < buf_size+1024-2; i++)
|
||||
recoded[j++] = buf[i];
|
||||
else
|
||||
for (i = 14; i < buf_size && j < buf_size+1024-2; i++)
|
||||
for (i = 14; i < buf_size && j < buf_size+1024-3; i++)
|
||||
{
|
||||
recoded[j++] = buf[i];
|
||||
if (buf[i] == 0xff)
|
||||
|
Loading…
Reference in New Issue
Block a user