summaryrefslogtreecommitdiff
path: root/graphics/tiff/patches/patch-aq
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/tiff/patches/patch-aq')
-rw-r--r--graphics/tiff/patches/patch-aq23
1 files changed, 0 insertions, 23 deletions
diff --git a/graphics/tiff/patches/patch-aq b/graphics/tiff/patches/patch-aq
deleted file mode 100644
index 1add6574ea3..00000000000
--- a/graphics/tiff/patches/patch-aq
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-aq,v 1.1 2004/10/18 14:37:24 tron Exp $
-
---- libtiff/tif_extension.c.orig 2003-12-22 09:22:15.000000000 +0100
-+++ libtiff/tif_extension.c 2004-10-18 16:25:32.000000000 +0200
-@@ -32,6 +32,7 @@
- */
-
- #include "tiffiop.h"
-+#include <assert.h>
-
- int TIFFGetTagListCount( TIFF *tif )
-
-@@ -100,8 +101,10 @@
- */
-
- link = (TIFFClientInfoLink *) _TIFFmalloc(sizeof(TIFFClientInfoLink));
-+ assert (link != NULL);
- link->next = tif->tif_clientinfo;
- link->name = (char *) _TIFFmalloc(strlen(name)+1);
-+ assert (link->name != NULL);
- strcpy(link->name, name);
- link->data = data;
-