OBS User unknown
2007-07-21 15:31:18 +00:00
committed by Git OBS Bridge
parent 925f4aee13
commit 8a31e9520a
3 changed files with 12 additions and 3 deletions

View File

@@ -20,8 +20,8 @@ Index: gimp-2.2.13/plug-ins/common/psd.c
+ for (cidx = 0; cidx < tl.num_channels; ++cidx) {
+ PSDchannel tc = tl.channel[cidx];
+
+ if (tc.width > 30000 || tc.width < 1 ||
+ tc.height > 30000 || tc.height < 1) {
+ if (tc.width > 30000 || tc.width < 0 ||
+ tc.height > 30000 || tc.height < 0) {
+ /* No good! */
+
+ g_message (_("Invalid file: %s"),

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Jul 19 00:05:23 CEST 2007 - maw@suse.de
- Respin gimp-psd-overflow.patch (http://bugzilla.gnome.org/show_bug.cgi?id=456042
and https://bugzilla.novell.com/show_bug.cgi?id=284288#c13).
-------------------------------------------------------------------
Wed Jul 4 00:22:16 CEST 2007 - maw@suse.de

View File

@@ -21,7 +21,7 @@ BuildRequires: python-gtk
%endif
URL: http://www.gimp.org/
Version: 2.2.13
Release: 87
Release: 91
License: GPL v2 or later
Group: Productivity/Graphics/Bitmap Editors
Provides: gimp2 gimp-2.0
@@ -721,6 +721,9 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/gtk-doc/html/*
%changelog
* Thu Jul 19 2007 - maw@suse.de
- Respin gimp-psd-overflow.patch (http://bugzilla.gnome.org/show_bug.cgi?id=456042
and https://bugzilla.novell.com/show_bug.cgi?id=284288#c13).
* Wed Jul 04 2007 - maw@suse.de
- Add gimp-psd-overflow.patch (#284288 and CVE-2007-2949), fixing
a buffer overflow.