avcodec/pngdsp: fix (un)signed type in end comparission
Fixes out of array accesses
Fixes Ticket2919
Found_by: ami_stuff
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 86736f59d6
)
This commit is contained in:

committed by
Carl Eugen Hoyos

parent
26617b47fa
commit
ddce97c7b0
@@ -30,7 +30,7 @@
|
|||||||
static void add_bytes_l2_c(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w)
|
static void add_bytes_l2_c(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w)
|
||||||
{
|
{
|
||||||
long i;
|
long i;
|
||||||
for (i = 0; i <= w - sizeof(long); i += sizeof(long)) {
|
for (i = 0; i <= w - (int)sizeof(long); i += sizeof(long)) {
|
||||||
long a = *(long *)(src1 + i);
|
long a = *(long *)(src1 + i);
|
||||||
long b = *(long *)(src2 + i);
|
long b = *(long *)(src2 + i);
|
||||||
*(long *)(dst + i) = ((a & pb_7f) + (b & pb_7f)) ^ ((a ^ b) & pb_80);
|
*(long *)(dst + i) = ((a & pb_7f) + (b & pb_7f)) ^ ((a ^ b) & pb_80);
|
||||||
|
Reference in New Issue
Block a user