From 2bd7907605442527472b59d8601144c02f4cbc7adf4a8c8513c4fea0548a83f6 Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Sat, 6 Feb 2016 18:20:55 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/kimageformats?expand=0&rev=76 --- fix-psd.patch | 31 ------------------------------- kimageformats.changes | 1 + 2 files changed, 1 insertion(+), 31 deletions(-) delete mode 100644 fix-psd.patch diff --git a/fix-psd.patch b/fix-psd.patch deleted file mode 100644 index 477239b..0000000 --- a/fix-psd.patch +++ /dev/null @@ -1,31 +0,0 @@ -From: Wolfgang Bauer -Date: Sun, 10 Jan 2016 12:24:35 +0000 -Subject: fix loading of RLE compressed PSD files -X-Git-Url: http://quickgit.kde.org/?p=kimageformats.git&a=commitdiff&h=5d7ef7c38e9f6aa473fec5ee7f1daabcb405ffd7 ---- -fix loading of RLE compressed PSD files - -decodeRLEData() expects a quint16 as length, but the PSD loader calls it -with a quint32. -We do need quint32 for PSD, otherwise it would overflow for images -bigger than 256x256 pixels (it's the pixel count there, i.e. width x -height). - -BUG: 354413 -FIXED-IN: 5.19.0 -REVIEW: 126684 ---- - - ---- a/src/imageformats/rle_p.h -+++ b/src/imageformats/rle_p.h -@@ -75,7 +75,7 @@ - static inline bool decodeRLEData(RLEVariant variant, - QDataStream &stream, - Item *dest, -- quint16 length, -+ quint32 length, - Func1 readData, - Func2 updateItem) - { - diff --git a/kimageformats.changes b/kimageformats.changes index 91f1a87..a2bb95b 100644 --- a/kimageformats.changes +++ b/kimageformats.changes @@ -4,6 +4,7 @@ Sat Feb 6 18:03:26 UTC 2016 - hrvoje.senjan@gmail.com - Update to 5.19.0 * For more details please see: https://www.kde.org/announcements/kde-frameworks-5.19.0.php +- Drop upstreamed fix-psd.patch ------------------------------------------------------------------- Fri Jan 8 20:35:13 UTC 2016 - wbauer@tmo.at