No Description

015-CVE-2013-4244.patch 624B

123456789101112131415161718
  1. Description: OOB write in gif2tiff
  2. Bug-Redhat: https://bugzilla.redhat.com/show_bug.cgi?id=996468
  3. Index: tiff-4.0.3/tools/gif2tiff.c
  4. ===================================================================
  5. --- tiff-4.0.3.orig/tools/gif2tiff.c 2013-08-24 11:17:13.546447901 -0400
  6. +++ tiff-4.0.3/tools/gif2tiff.c 2013-08-24 11:17:13.546447901 -0400
  7. @@ -400,6 +400,10 @@
  8. }
  9. if (oldcode == -1) {
  10. + if (code >= clear) {
  11. + fprintf(stderr, "bad input: code=%d is larger than clear=%d\n",code, clear);
  12. + return 0;
  13. + }
  14. *(*fill)++ = suffix[code];
  15. firstchar = oldcode = code;
  16. return 1;