Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-software for openSUSE:Factory checked in at 2023-02-14 16:42:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-software (Old) and /work/SRC/openSUSE:Factory/.gnome-software.new.27156 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-software" Tue Feb 14 16:42:52 2023 rev:105 rq:1065573 version:43.4 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-software/gnome-software.changes 2023-02-11 22:20:17.340111008 +0100 +++ /work/SRC/openSUSE:Factory/.gnome-software.new.27156/gnome-software.changes 2023-02-14 16:42:55.133551237 +0100 @@ -1,0 +2,9 @@ +Mon Feb 13 08:10:52 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Add upstream leak fixes: + + 66b400d63b8d7b921b83250a8b9a09e9a1eb6732.patch: + gs-plugin-job-list-apps: Fix a leak of the GsAppQuery + + 1355554764815195aaf9f6e23acdd7a9c521ceaa.patch: + gs-plugin-job-manage-repository: Fix a minor leak + +------------------------------------------------------------------- New: ---- 1355554764815195aaf9f6e23acdd7a9c521ceaa.patch 66b400d63b8d7b921b83250a8b9a09e9a1eb6732.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-software.spec ++++++ --- /var/tmp/diff_new_pack.W8Z089/_old 2023-02-14 16:42:55.565553800 +0100 +++ /var/tmp/diff_new_pack.W8Z089/_new 2023-02-14 16:42:55.569553824 +0100 @@ -32,6 +32,10 @@ # PATCH-FIX-OPENSUSE gnome-software-disable-offline-update.patch bsc#944832 sck...@suse.com -- Disable offline update in SLE and openSUSE Leap Patch1: gnome-software-disable-offline-update.patch %endif +# PATCH-FIX-UPSTREAM 66b400d63b8d7b921b83250a8b9a09e9a1eb6732.patch -- gs-plugin-job-list-apps: Fix a leak of the GsAppQuery +Patch2: https://gitlab.gnome.org/GNOME/gnome-software/-/commit/66b400d63b8d7b921b83250a8b9a09e9a1eb6732.patch +# PATCH-FIX-UPSTREAM 1355554764815195aaf9f6e23acdd7a9c521ceaa.patch -- gs-plugin-job-manage-repository: Fix a minor leak +Patch3: https://gitlab.gnome.org/GNOME/gnome-software/-/commit/1355554764815195aaf9f6e23acdd7a9c521ceaa.patch BuildRequires: gtk-doc BuildRequires: meson >= 0.58.0 ++++++ 1355554764815195aaf9f6e23acdd7a9c521ceaa.patch ++++++ >From 1355554764815195aaf9f6e23acdd7a9c521ceaa Mon Sep 17 00:00:00 2001 From: Philip Withnall <pwithn...@endlessos.org> Date: Fri, 10 Feb 2023 01:03:59 +0000 Subject: [PATCH] gs-plugin-job-manage-repository: Fix a minor leak Signed-off-by: Philip Withnall <pwithn...@endlessos.org> --- lib/gs-plugin-job-manage-repository.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/gs-plugin-job-manage-repository.c b/lib/gs-plugin-job-manage-repository.c index 7ee444449..2b8ee668b 100644 --- a/lib/gs-plugin-job-manage-repository.c +++ b/lib/gs-plugin-job-manage-repository.c @@ -63,6 +63,8 @@ gs_plugin_job_manage_repository_dispose (GObject *object) g_assert (self->saved_error == NULL); g_assert (self->n_pending_ops == 0); + g_clear_object (&self->repository); + G_OBJECT_CLASS (gs_plugin_job_manage_repository_parent_class)->dispose (object); } -- GitLab ++++++ 66b400d63b8d7b921b83250a8b9a09e9a1eb6732.patch ++++++ >From 66b400d63b8d7b921b83250a8b9a09e9a1eb6732 Mon Sep 17 00:00:00 2001 From: Philip Withnall <pwithn...@endlessos.org> Date: Fri, 10 Feb 2023 01:03:42 +0000 Subject: [PATCH] gs-plugin-job-list-apps: Fix a leak of the GsAppQuery Signed-off-by: Philip Withnall <pwithn...@endlessos.org> --- lib/gs-plugin-job-list-apps.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/gs-plugin-job-list-apps.c b/lib/gs-plugin-job-list-apps.c index a556387e5..56a4e14be 100644 --- a/lib/gs-plugin-job-list-apps.c +++ b/lib/gs-plugin-job-list-apps.c @@ -84,6 +84,7 @@ gs_plugin_job_list_apps_dispose (GObject *object) g_assert (self->n_pending_ops == 0); g_clear_object (&self->result_list); + g_clear_object (&self->query); G_OBJECT_CLASS (gs_plugin_job_list_apps_parent_class)->dispose (object); } -- GitLab