aboutsummaryrefslogtreecommitdiff
path: root/textproc/libextractor
diff options
context:
space:
mode:
authorVasil Dimov <vd@FreeBSD.org>2007-05-01 18:23:58 +0000
committerVasil Dimov <vd@FreeBSD.org>2007-05-01 18:23:58 +0000
commit5e234eae42d92c1436352bd55b52d5422986e4e5 (patch)
tree6e0b006a96173ba65d0af52476611349f34b2f77 /textproc/libextractor
parentb0b5499de1b124e8ad1dc86c2746a18f519a8f58 (diff)
downloadports-5e234eae42d92c1436352bd55b52d5422986e4e5.tar.gz
ports-5e234eae42d92c1436352bd55b52d5422986e4e5.zip
Notes
Diffstat (limited to 'textproc/libextractor')
-rw-r--r--textproc/libextractor/files/patch-src_plugins_pngextractor.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/textproc/libextractor/files/patch-src_plugins_pngextractor.c b/textproc/libextractor/files/patch-src_plugins_pngextractor.c
deleted file mode 100644
index 4109d8187714..000000000000
--- a/textproc/libextractor/files/patch-src_plugins_pngextractor.c
+++ /dev/null
@@ -1,16 +0,0 @@
---- src/plugins/pngextractor.c.orig Tue Oct 4 22:36:11 2005
-+++ src/plugins/pngextractor.c Tue Oct 4 22:36:40 2005
-@@ -23,6 +23,13 @@
- #include <zlib.h>
- #include "convert.h"
-
-+size_t
-+strnlen (const char *string, size_t maxlen)
-+{
-+ const char *end = memchr (string, '\0', maxlen);
-+ return end ? (size_t) (end - string) : maxlen;
-+}
-+
- static char * stndup(const char * str,
- size_t n) {
- char * tmp;