mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-05 23:00:02 +00:00
Fix potential pointer arithmetic overflows in rle_unpack() of vmd video decoder.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4749e07498
commit
35cb6854bb
@ -179,13 +179,13 @@ static int rle_unpack(const unsigned char *src, int src_len, int src_count,
|
||||
l = *ps++;
|
||||
if (l & 0x80) {
|
||||
l = (l & 0x7F) * 2;
|
||||
if (pd + l > dest_end || ps_end - ps < l)
|
||||
if (dest_end - pd < l || ps_end - ps < l)
|
||||
return ps - src;
|
||||
memcpy(pd, ps, l);
|
||||
ps += l;
|
||||
pd += l;
|
||||
} else {
|
||||
if (pd + i > dest_end || ps_end - ps < 2)
|
||||
if (dest_end - pd < i || ps_end - ps < 2)
|
||||
return ps - src;
|
||||
for (i = 0; i < l; i++) {
|
||||
*pd++ = ps[0];
|
||||
|
Loading…
Reference in New Issue
Block a user