summaryrefslogtreecommitdiff
path: root/graphics/tiff/patches/patch-av
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/tiff/patches/patch-av')
-rw-r--r--graphics/tiff/patches/patch-av17
1 files changed, 0 insertions, 17 deletions
diff --git a/graphics/tiff/patches/patch-av b/graphics/tiff/patches/patch-av
deleted file mode 100644
index 743e733ae00..00000000000
--- a/graphics/tiff/patches/patch-av
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-av,v 1.1 2004/10/18 14:37:24 tron Exp $
-
---- libtiff/tif_thunder.c.orig 2003-07-11 08:25:25.000000000 +0200
-+++ libtiff/tif_thunder.c 2004-10-18 16:25:33.000000000 +0200
-@@ -91,8 +91,10 @@
- } else
- lastpixel |= lastpixel << 4;
- npixels += n;
-- for (; n > 0; n -= 2)
-- *op++ = (tidataval_t) lastpixel;
-+ if (npixels < maxpixels) {
-+ for (; n > 0; n -= 2)
-+ *op++ = (tidataval_t) lastpixel;
-+ }
- if (n == -1)
- *--op &= 0xf0;
- lastpixel &= 0xf;