Your message dated Sat, 02 Apr 2016 14:20:04 +0100
with message-id <1459603204.2441.216.ca...@adam-barratt.org.uk>
and subject line Fix included in stable
has caused the Debian Bug report #818615,
regarding jessie-pu: package gtk+2.0
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
818615: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=818615
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Hi,
I'd like to fix a security issue in GTK, which doesn't really warrant
a DSA. Debdiff below, I've been running this on my jessie
workstation for a day now.
Cheers,
Moritz
diff -Nru gtk+2.0-2.24.25/debian/changelog gtk+2.0-2.24.25/debian/changelog
--- gtk+2.0-2.24.25/debian/changelog 2015-03-03 19:39:59.000000000 +0100
+++ gtk+2.0-2.24.25/debian/changelog 2016-03-17 23:20:16.000000000 +0100
@@ -1,3 +1,9 @@
+gtk+2.0 (2.24.25-3+deb8u1) jessie; urgency=medium
+
+ * CVE-2013-7447 (Closes: #799275)
+
+ -- Moritz M�hlenhoff <j...@debian.org> Thu, 17 Mar 2016 00:17:18 +0100
+
gtk+2.0 (2.24.25-3) unstable; urgency=medium
* 0002-gdk-Fix-GdkWindowFilter-internal-refcounting.patch
diff -Nru gtk+2.0-2.24.25/debian/patches/099_CVE-2013-7447.patch
gtk+2.0-2.24.25/debian/patches/099_CVE-2013-7447.patch
--- gtk+2.0-2.24.25/debian/patches/099_CVE-2013-7447.patch 1970-01-01
01:00:00.000000000 +0100
+++ gtk+2.0-2.24.25/debian/patches/099_CVE-2013-7447.patch 2016-03-17
23:15:42.000000000 +0100
@@ -0,0 +1,30 @@
+From 894b1ae76a32720f4bb3d39cf460402e3ce331d6 Mon Sep 17 00:00:00 2001
+From: Matthias Clasen <mcla...@redhat.com>
+Date: Sat, 29 Jun 2013 22:06:54 -0400
+Subject: Avoid integer overflow
+
+Use g_malloc_n in gdk_cairo_set_source_pixbuf when allocating
+a large block of memory, to avoid integer overflow.
+
+Pointed out by Bert Massop in
+https://bugzilla.gnome.org/show_bug.cgi?id=703220
+---
+ gdk/gdkcairo.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/gdk/gdkcairo.c b/gdk/gdkcairo.c
+index 19bed04..2e1d8dc 100644
+--- a/gdk/gdkcairo.c
++++ b/gdk/gdkcairo.c
+@@ -213,7 +213,7 @@ gdk_cairo_set_source_pixbuf (cairo_t *cr,
+ format = CAIRO_FORMAT_ARGB32;
+
+ cairo_stride = cairo_format_stride_for_width (format, width);
+- cairo_pixels = g_malloc (height * cairo_stride);
++ cairo_pixels = g_malloc_n (height, cairo_stride);
+ surface = cairo_image_surface_create_for_data ((unsigned char
*)cairo_pixels,
+ format,
+ width, height, cairo_stride);
+--
+cgit v0.12
+
diff -Nru gtk+2.0-2.24.25/debian/patches/series
gtk+2.0-2.24.25/debian/patches/series
--- gtk+2.0-2.24.25/debian/patches/series 2015-03-03 19:36:04.000000000
+0100
+++ gtk+2.0-2.24.25/debian/patches/series 2016-03-17 23:17:03.000000000
+0100
@@ -14,3 +14,4 @@
061_use_pdf_as_default_printing_standard.patch
065_gir_set_packages.patch
098_multiarch_module_path.patch
+099_CVE-2013-7447.patch
--- End Message ---
--- Begin Message ---
Version: 8.4
Hi,
The packages referenced by these bugs were included in today's stable
point release.
Regards,
Adam
--- End Message ---