r46741 - in /desktop/unstable/gnome-system-log/debian: changelog patches/03_git_invalid_unref.patch patches/series
laney at users.alioth.debian.org
laney at users.alioth.debian.org
Mon Oct 19 15:04:36 UTC 2015
Author: laney
Date: Mon Oct 19 15:04:36 2015
New Revision: 46741
URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=46741
Log:
* debian/patches/03_git_invalid_unref.patch:
- backport upstream commit to fix segfaults (lp: #1500806, Closes:
#802326)
Added:
desktop/unstable/gnome-system-log/debian/patches/03_git_invalid_unref.patch
Modified:
desktop/unstable/gnome-system-log/debian/changelog
desktop/unstable/gnome-system-log/debian/patches/series
Modified: desktop/unstable/gnome-system-log/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-system-log/debian/changelog?rev=46741&op=diff
==============================================================================
--- desktop/unstable/gnome-system-log/debian/changelog [utf-8] (original)
+++ desktop/unstable/gnome-system-log/debian/changelog [utf-8] Mon Oct 19 15:04:36 2015
@@ -1,3 +1,11 @@
+gnome-system-log (3.9.90-4) UNRELEASED; urgency=medium
+
+ * debian/patches/03_git_invalid_unref.patch:
+ - backport upstream commit to fix segfaults (lp: #1500806, Closes:
+ #802326)
+
+ -- Sebastien Bacher <seb128 at ubuntu.com> Mon, 19 Oct 2015 16:10:52 +0200
+
gnome-system-log (3.9.90-3) unstable; urgency=medium
[ Andreas Henriksson ]
Added: desktop/unstable/gnome-system-log/debian/patches/03_git_invalid_unref.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-system-log/debian/patches/03_git_invalid_unref.patch?rev=46741&op=file
==============================================================================
--- desktop/unstable/gnome-system-log/debian/patches/03_git_invalid_unref.patch (added)
+++ desktop/unstable/gnome-system-log/debian/patches/03_git_invalid_unref.patch [utf-8] Mon Oct 19 15:04:36 2015
@@ -0,0 +1,33 @@
+From a09f87bafc833d199cfd8364dff72b4c2e812af8 Mon Sep 17 00:00:00 2001
+From: Daniel Wyatt <Daniel.Wyatt at gmail.com>
+Date: Mon, 23 Dec 2013 17:35:49 -0500
+Subject: Fix incorrect last updated times by not unrefing log_time too early
+
+---
+ src/logview-window.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/logview-window.c b/src/logview-window.c
+index 3d7a768..7639e01 100644
+--- a/src/logview-window.c
++++ b/src/logview-window.c
+@@ -191,7 +191,6 @@ logview_update_header (LogviewWindow *logview,
+ log_time = g_date_time_new_from_unix_local (timestamp);
+
+ text = logview_utils_format_date (log_time);
+- g_date_time_unref (log_time);
+
+ /* translators: this is part of a label composed with
+ * a date string, for example "updated today 23:54"
+@@ -202,6 +201,7 @@ logview_update_header (LogviewWindow *logview,
+ g_free (text);
+
+ text = g_date_time_format (log_time, "%X");
++ g_date_time_unref (log_time);
+ g_string_append (string, " ");
+ g_string_append (string, text);
+ g_free (text);
+--
+cgit v0.11.2
+
+
Modified: desktop/unstable/gnome-system-log/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-system-log/debian/patches/series?rev=46741&op=diff
==============================================================================
--- desktop/unstable/gnome-system-log/debian/patches/series [utf-8] (original)
+++ desktop/unstable/gnome-system-log/debian/patches/series [utf-8] Mon Oct 19 15:04:36 2015
@@ -1,2 +1,3 @@
01_logview_pkexec.patch
02_no_timestamp_styling.patch
+03_git_invalid_unref.patch
More information about the pkg-gnome-commits
mailing list