r38260 - in /desktop/unstable/five-or-more/debian: changelog patches/ patches/fix-glines-crash.patch patches/series

jbicha-guest at users.alioth.debian.org jbicha-guest at users.alioth.debian.org
Thu May 30 21:34:36 UTC 2013


Author: jbicha-guest
Date: Thu May 30 21:34:35 2013
New Revision: 38260

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=38260
Log:
Add fix-glines-crash.patch to fix crashes on 32-bit
Thanks Julian Taylor for recognizing that the bug still exists

Added:
    desktop/unstable/five-or-more/debian/patches/
    desktop/unstable/five-or-more/debian/patches/fix-glines-crash.patch
    desktop/unstable/five-or-more/debian/patches/series
Modified:
    desktop/unstable/five-or-more/debian/changelog

Modified: desktop/unstable/five-or-more/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/five-or-more/debian/changelog?rev=38260&op=diff
==============================================================================
--- desktop/unstable/five-or-more/debian/changelog [utf-8] (original)
+++ desktop/unstable/five-or-more/debian/changelog [utf-8] Thu May 30 21:34:35 2013
@@ -1,3 +1,10 @@
+five-or-more (1:3.8.1-2) UNRELEASED; urgency=low
+
+  * Add fix-glines-crash.patch to fix crashes on 32-bit
+    Thanks Julian Taylor for recognizing that the bug still exists
+
+ -- Jeremy Bicha <jbicha at ubuntu.com>  Thu, 30 May 2013 17:32:23 -0400
+
 five-or-more (1:3.8.1-1) unstable; urgency=low
 
   [ Jeremy Bicha ]

Added: desktop/unstable/five-or-more/debian/patches/fix-glines-crash.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/five-or-more/debian/patches/fix-glines-crash.patch?rev=38260&op=file
==============================================================================
--- desktop/unstable/five-or-more/debian/patches/fix-glines-crash.patch (added)
+++ desktop/unstable/five-or-more/debian/patches/fix-glines-crash.patch [utf-8] Thu May 30 21:34:35 2013
@@ -1,0 +1,16 @@
+Description: prevent draw before preview is initinialized
+Origin: upstream bug
+Bug-Ubuntu: https://launchpad.net/bugs/995281
+Bug: https://bugzilla.gnome.org/show_bug.cgi?id=675628
+
+--- a/src/glines.c
++++ b/src/glines.c
+@@ -442,7 +442,7 @@
+ 
+   for (i = 0; i < MAXNPIECES; i++) {
+ 
+-    if (i < npieces)
++    if (i < npieces && preview[i] > 0 )
+       pattern = cairo_pattern_create_for_surface (preview_surfaces[preview[i] - 1]);
+     else
+       pattern = cairo_pattern_create_for_surface (blank_preview_surface);

Added: desktop/unstable/five-or-more/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/five-or-more/debian/patches/series?rev=38260&op=file
==============================================================================
--- desktop/unstable/five-or-more/debian/patches/series (added)
+++ desktop/unstable/five-or-more/debian/patches/series [utf-8] Thu May 30 21:34:35 2013
@@ -1,0 +1,1 @@
+fix-glines-crash.patch




More information about the pkg-gnome-commits mailing list