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> (cherry picked from commit f0896a6bd94e5b45447c7d640c8e8aa95d860d7a) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
3581ab6ce0
commit
450e4b1a60
@ -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…
x
Reference in New Issue
Block a user