Blame SOURCES/libtiff-CVE-2013-4244.patch

0e6869
diff --git a/tools/gif2tiff.c b/tools/gif2tiff.c
0e6869
index 375b152..2731273 100644
0e6869
--- a/tools/gif2tiff.c
0e6869
+++ b/tools/gif2tiff.c
0e6869
@@ -402,6 +402,10 @@ process(register int code, unsigned char** fill)
0e6869
     }
0e6869
 
0e6869
     if (oldcode == -1) {
0e6869
+        if (code >= clear) {
0e6869
+            fprintf(stderr, "bad input: code=%d is larger than clear=%d\n",code, clear);
0e6869
+            return 0;
0e6869
+        }
0e6869
 	*(*fill)++ = suffix[code];
0e6869
 	firstchar = oldcode = code;
0e6869
 	return 1;