From 70d25ca63199f98c7f5bfb6d9f54023eec9048d1 Mon Sep 17 00:00:00 2001 From: Andreas Sturmlechner Date: Tue, 24 Jan 2023 15:12:10 +0100 Subject: media-libs/tiff: drop 4.4.0-r1, 4.4.0-r2 Bug: https://bugs.gentoo.org/856478 Signed-off-by: Andreas Sturmlechner --- .../files/tiff-4.4.0-hylafaxplus-regression.patch | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 media-libs/tiff/files/tiff-4.4.0-hylafaxplus-regression.patch (limited to 'media-libs/tiff/files/tiff-4.4.0-hylafaxplus-regression.patch') diff --git a/media-libs/tiff/files/tiff-4.4.0-hylafaxplus-regression.patch b/media-libs/tiff/files/tiff-4.4.0-hylafaxplus-regression.patch deleted file mode 100644 index c640f6e1b1a7..000000000000 --- a/media-libs/tiff/files/tiff-4.4.0-hylafaxplus-regression.patch +++ /dev/null @@ -1,34 +0,0 @@ -https://bugs.gentoo.org/883641 -https://gitlab.com/libtiff/libtiff/-/issues/489 -https://gitlab.com/libtiff/libtiff/-/commit/72de8fd00be8a583a6b16cc0b700105020d249ba - -From 72de8fd00be8a583a6b16cc0b700105020d249ba Mon Sep 17 00:00:00 2001 -From: Even Rouault -Date: Tue, 29 Nov 2022 14:57:27 +0100 -Subject: [PATCH] TIFFWriteRawStrip(): restore capabilities to append data in - the current strip (fixes #489) - -This fixes a regression of libtiff 4.4.0 ---- a/libtiff/tif_write.c -+++ b/libtiff/tif_write.c -@@ -341,10 +341,13 @@ TIFFWriteRawStrip(TIFF* tif, uint32_t strip, void* data, tmsize_t cc) - return ((tmsize_t) -1); - } - -- tif->tif_curstrip = strip; -+ if (tif->tif_curstrip != strip) -+ { -+ tif->tif_curstrip = strip; - -- /* this informs TIFFAppendToStrip() we have changed or reset strip */ -- tif->tif_curoff = 0; -+ /* this informs TIFFAppendToStrip() we have changed or reset strip */ -+ tif->tif_curoff = 0; -+ } - - if (td->td_stripsperimage == 0) { - TIFFErrorExtR(tif, module,"Zero strips per image"); --- -GitLab - - -- cgit v1.2.3-65-gdbad