aboutsummaryrefslogtreecommitdiffstats
path: root/main/tiff/libtiff-CVE-2013-4244.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/tiff/libtiff-CVE-2013-4244.patch')
-rw-r--r--main/tiff/libtiff-CVE-2013-4244.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/main/tiff/libtiff-CVE-2013-4244.patch b/main/tiff/libtiff-CVE-2013-4244.patch
deleted file mode 100644
index 792e076981..0000000000
--- a/main/tiff/libtiff-CVE-2013-4244.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/tools/gif2tiff.c b/tools/gif2tiff.c
-index 375b152..2731273 100644
---- a/tools/gif2tiff.c
-+++ b/tools/gif2tiff.c
-@@ -402,6 +402,10 @@ process(register int code, unsigned char** fill)
- }
-
- if (oldcode == -1) {
-+ if (code >= clear) {
-+ fprintf(stderr, "bad input: code=%d is larger than clear=%d\n",code, clear);
-+ return 0;
-+ }
- *(*fill)++ = suffix[code];
- firstchar = oldcode = code;
- return 1;