Hello community,

here is the log from the commit of package libreoffice for openSUSE:Factory 
checked in at 2017-08-12 19:42:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libreoffice (Old)
 and      /work/SRC/openSUSE:Factory/.libreoffice.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libreoffice"

Sat Aug 12 19:42:25 2017 rev:136 rq:514894 version:5.4.0.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/libreoffice/libreoffice.changes  2017-07-28 
09:43:18.872841532 +0200
+++ /work/SRC/openSUSE:Factory/.libreoffice.new/libreoffice.changes     
2017-08-12 19:42:28.596097416 +0200
@@ -1,0 +2,6 @@
+Fri Aug  4 19:16:58 UTC 2017 - mgo...@suse.com
+
+- Add gnome-documents-check-ntimeoutid.patch: fix intermittent
+  crash opening files from gnome-documents (bsc#1047714).
+
+-------------------------------------------------------------------

New:
----
  gnome-documents-check-ntimeoutid.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libreoffice.spec ++++++
--- /var/tmp/diff_new_pack.xZkyTu/_old  2017-08-12 19:42:36.035054026 +0200
+++ /var/tmp/diff_new_pack.xZkyTu/_new  2017-08-12 19:42:36.043052904 +0200
@@ -81,6 +81,7 @@
 Patch5:         mediawiki-no-broken-help.diff
 # PATCH-HOTFIX-UPSTREAM: disable test that rounds wrongly on most archs
 Patch16:        libreoffice-hotfix-disablebrokenshapetest.patch
+Patch17:        gnome-documents-check-ntimeoutid.patch
 # try to save space by using hardlinks
 Patch990:       install-with-hardlinks.diff
 BuildRequires:  %{name}-share-linker
@@ -911,6 +912,7 @@
 %patch4
 %patch5
 %patch16 -p1
+%patch17 -p1
 %patch990 -p1
 
 # Do not generate doxygen timestamp








++++++ gnome-documents-check-ntimeoutid.patch ++++++
>From e567ede54e85200f9e412dfa94a0f7b05c27d32f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caol...@redhat.com>
Date: Wed, 14 Jun 2017 21:18:22 +0100
Subject: [PATCH] Related: rhbz#1444437 check if m_nTimeoutId is valid

Change-Id: I80d850d23ab0e95bb4b105efa5a1ae1e59933a95
---
 libreofficekit/source/gtk/lokdocview.cxx | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libreofficekit/source/gtk/lokdocview.cxx 
b/libreofficekit/source/gtk/lokdocview.cxx
index a59d72bcc374..ceda8160c9dd 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -246,7 +246,8 @@ struct LOKDocViewPrivateImpl
 
     ~LOKDocViewPrivateImpl()
     {
-        g_source_remove(m_nTimeoutId);
+        if (m_nTimeoutId)
+            g_source_remove(m_nTimeoutId);
     }
 };
 
-- 
2.12.3


Reply via email to