summaryrefslogtreecommitdiff
path: root/graphics/py-imaging/patches/patch-PcdDecode
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/py-imaging/patches/patch-PcdDecode')
-rw-r--r--graphics/py-imaging/patches/patch-PcdDecode24
1 files changed, 24 insertions, 0 deletions
diff --git a/graphics/py-imaging/patches/patch-PcdDecode b/graphics/py-imaging/patches/patch-PcdDecode
new file mode 100644
index 00000000000..c609d8e1540
--- /dev/null
+++ b/graphics/py-imaging/patches/patch-PcdDecode
@@ -0,0 +1,24 @@
+$NetBSD: patch-PcdDecode,v 1.1 2016/02/16 20:17:42 drochner Exp $
+
+https://github.com/python-pillow/Pillow/pull/1706
+
+--- libImaging/PcdDecode.c.orig 2016-02-16 20:03:07.000000000 +0000
++++ libImaging/PcdDecode.c
+@@ -47,7 +47,7 @@ ImagingPcdDecode(Imaging im, ImagingCode
+ out[0] = ptr[x];
+ out[1] = ptr[(x+4*state->xsize)/2];
+ out[2] = ptr[(x+5*state->xsize)/2];
+- out += 4;
++ out += 3;
+ }
+
+ state->shuffle((UINT8*) im->image[state->y],
+@@ -62,7 +62,7 @@ ImagingPcdDecode(Imaging im, ImagingCode
+ out[0] = ptr[x+state->xsize];
+ out[1] = ptr[(x+4*state->xsize)/2];
+ out[2] = ptr[(x+5*state->xsize)/2];
+- out += 4;
++ out += 3;
+ }
+
+ state->shuffle((UINT8*) im->image[state->y],