From 049af7a95b01eba14d33586ad5852dddaf107e53 Mon Sep 17 00:00:00 2001 From: Parabola Date: Sun, 17 Apr 2011 19:27:42 +0000 Subject: Fixed --- extra/libtiff/ChangeLog | 35 ------------------------------- extra/libtiff/libtiff-CVE-2009-2285.patch | 22 ------------------- 2 files changed, 57 deletions(-) delete mode 100644 extra/libtiff/ChangeLog delete mode 100644 extra/libtiff/libtiff-CVE-2009-2285.patch (limited to 'extra/libtiff') diff --git a/extra/libtiff/ChangeLog b/extra/libtiff/ChangeLog deleted file mode 100644 index 88edcc7fc..000000000 --- a/extra/libtiff/ChangeLog +++ /dev/null @@ -1,35 +0,0 @@ -2010-06-20 Eric Belanger - - * libtiff 3.9.4-1 - * Upstream update - -2009-11-05 Eric Belanger - - * libtiff 3.9.2-1 - * Upstream update - -2009-08-28 Eric Belanger - - * libtiff 3.9.1-1 - * Upstream update - -2009-08-26 Eric Belanger - - * libtiff 3.9.0-1 - * Upstream update - * Updated url - * Updated patches - -2009-08-14 Eric Belanger - - * libtiff 3.8.2-6 - * Added security fixes (close FS#15931) - -2008-09-05 Eric Belanger - - * libtiff 3.8.2-4 - * Applied patch to fix buffer underflow in LZW decoding (tiff-3.8.2-CVE-2008-2327.patch) - * Added license - * Added freeglut optdepends - * FHS man pages - * Added ChangeLog diff --git a/extra/libtiff/libtiff-CVE-2009-2285.patch b/extra/libtiff/libtiff-CVE-2009-2285.patch deleted file mode 100644 index 435a84b53..000000000 --- a/extra/libtiff/libtiff-CVE-2009-2285.patch +++ /dev/null @@ -1,22 +0,0 @@ -Index: tiff-3.8.2/libtiff/tif_lzw.c -=================================================================== ---- tiff-3.8.2.orig/libtiff/tif_lzw.c -+++ tiff-3.8.2/libtiff/tif_lzw.c -@@ -421,7 +421,7 @@ LZWDecode(TIFF* tif, tidata_t op0, tsize - NextCode(tif, sp, bp, code, GetNextCode); - if (code == CODE_EOI) - break; -- if (code == CODE_CLEAR) { -+ if (code >= CODE_CLEAR) { - TIFFErrorExt(tif->tif_clientdata, tif->tif_name, - "LZWDecode: Corrupted LZW table at scanline %d", - tif->tif_row); -@@ -624,7 +624,7 @@ LZWDecodeCompat(TIFF* tif, tidata_t op0, - NextCode(tif, sp, bp, code, GetNextCodeCompat); - if (code == CODE_EOI) - break; -- if (code == CODE_CLEAR) { -+ if (code >= CODE_CLEAR) { - TIFFErrorExt(tif->tif_clientdata, tif->tif_name, - "LZWDecode: Corrupted LZW table at scanline %d", - tif->tif_row); -- cgit v1.2.3-54-g00ecf