Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package colord-gtk for openSUSE:Factory checked in at 2023-06-30 19:58:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/colord-gtk (Old) and /work/SRC/openSUSE:Factory/.colord-gtk.new.13546 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "colord-gtk" Fri Jun 30 19:58:02 2023 rev:14 rq:1095980 version:0.3.0 Changes: -------- --- /work/SRC/openSUSE:Factory/colord-gtk/colord-gtk.changes 2022-06-09 14:09:56.024378497 +0200 +++ /work/SRC/openSUSE:Factory/.colord-gtk.new.13546/colord-gtk.changes 2023-06-30 19:58:09.049386016 +0200 @@ -1,0 +2,6 @@ +Thu Jun 29 07:46:18 UTC 2023 - Michal Kubecek <[email protected]> + +- fix segfault when turning monitor back on (bsc#1212840): + Fix-the-callback-signature-to-fix-a-crash.patch + +------------------------------------------------------------------- New: ---- Fix-the-callback-signature-to-fix-a-crash.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ colord-gtk.spec ++++++ --- /var/tmp/diff_new_pack.T0vVsl/_old 2023-06-30 19:58:10.233393058 +0200 +++ /var/tmp/diff_new_pack.T0vVsl/_new 2023-06-30 19:58:10.237393082 +0200 @@ -1,7 +1,7 @@ # # spec file for package colord-gtk # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -27,6 +27,8 @@ Source1: https://www.freedesktop.org/software/colord/releases/colord-gtk-%{version}.tar.xz.asc Source2: %{name}.keyring Source99: baselibs.conf +# PATCH-FIX-UPSTREAM Fix-the-callback-signature-to-fix-a-crash.patch bsc#1212840 gh#hughsie/colord-gtk#22 -- Fix segfault when turning monitor back on +Patch1: Fix-the-callback-signature-to-fix-a-crash.patch BuildRequires: docbook5-xsl-stylesheets BuildRequires: gtk-doc BuildRequires: meson ++++++ Fix-the-callback-signature-to-fix-a-crash.patch ++++++ From: Richard Hughes <[email protected]> Date: Sat, 24 Jun 2023 12:06:12 +0100 Subject: Fix the callback signature to fix a crash Patch-mainline: 0.4.0? Git-commit: c620b4a4b3dfc2ce58cd60b9d5209fb19396fc42 References: bsc#1212840 https://github.com/hughsie/colord-gtk/issues/22 Fixes https://github.com/hughsie/colord-gtk/issues/22 --- libcolord-gtk/cd-window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/libcolord-gtk/cd-window.c +++ b/libcolord-gtk/cd-window.c @@ -295,7 +295,7 @@ cd_window_get_profile_device_find_cb (GObject *source, } static void -cd_window_device_changed_cb (CdDevice *device, CdWindow *window) +cd_window_device_changed_cb (CdClient *client, CdDevice *device, CdWindow *window) { CdProfile *profile;
