You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
624 B

  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;