summaryrefslogtreecommitdiff
path: root/source/fitz/draw-affine.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/fitz/draw-affine.c')
-rw-r--r--source/fitz/draw-affine.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/fitz/draw-affine.c b/source/fitz/draw-affine.c
index 71a0cecd..0d768013 100644
--- a/source/fitz/draw-affine.c
+++ b/source/fitz/draw-affine.c
@@ -374,9 +374,9 @@ fz_paint_affine_N_near(byte * restrict dp, int da, const byte * restrict sp, int
int t = 255 - a;
if (t == 0)
{
- if (n1+da == 4)
+ if (n1+da == 4 && n1+sa == 4)
{
- *(int *)dp = *(int *)sample;
+ *(int32_t *)dp = *(int32_t *)sample;
}
else
{
@@ -424,9 +424,9 @@ fz_paint_affine_N_near(byte * restrict dp, int da, const byte * restrict sp, int
int t = 255 - a;
if (t == 0)
{
- if (n1+da == 4)
+ if (n1+da == 4 && n1+sa == 4)
{
- *(int *)dp = *(int *)sample;
+ *(int32_t *)dp = *(int32_t *)sample;
}
else
{
@@ -471,9 +471,9 @@ fz_paint_affine_N_near(byte * restrict dp, int da, const byte * restrict sp, int
int t = 255 - a;
if (t == 0)
{
- if (n1+da == 4)
+ if (n1+da == 4 && n1+sa == 4)
{
- *(int *)dp = *(int *)sample;
+ *(int32_t *)dp = *(int32_t *)sample;
}
else
{