public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Ernestas Kulik <ekulik@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/abrt] update-2.17.9-f44: Add fix for #1836190
Date: Mon, 03 Aug 2026 11:05:21 GMT [thread overview]
Message-ID: <178575512127.1.4697726227103911435.rpms-abrt-18305b2c5069@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/abrt
Branch : update-2.17.9-f44
Commit : 18305b2c5069a8dac7653bc51479c87c929f15ab
Author : Ernestas Kulik <ekulik@redhat.com>
Date : 2020-05-21T16:21:26+02:00
Stats : +61/-1 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/abrt/c/18305b2c5069a8dac7653bc51479c87c929f15ab?branch=update-2.17.9-f44
Log:
Add fix for #1836190
---
diff --git a/0001-applet-Pass-instance-pointer-to-signal-handler.patch b/0001-applet-Pass-instance-pointer-to-signal-handler.patch
new file mode 100644
index 0000000..9010657
--- /dev/null
+++ b/0001-applet-Pass-instance-pointer-to-signal-handler.patch
@@ -0,0 +1,28 @@
+From 5618985d3d7f830ebba0ef78e2ee6d3d6f9f6c55 Mon Sep 17 00:00:00 2001
+From: Ernestas Kulik <ekulik@redhat.com>
+Date: Fri, 15 May 2020 15:49:59 +0200
+Subject: [PATCH] applet: Pass instance pointer to signal handler
+
+Some fallout from 802a40a2f7c971b6533162e70b860e01ae3b5a27.
+
+https://bugzilla.redhat.com/show_bug.cgi?id=1836190
+---
+ src/applet/abrt-applet-application.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/applet/abrt-applet-application.c b/src/applet/abrt-applet-application.c
+index d982c9f9..8ea653bb 100644
+--- a/src/applet/abrt-applet-application.c
++++ b/src/applet/abrt-applet-application.c
+@@ -177,7 +177,7 @@ abrt_applet_application_init (AbrtAppletApplication *self)
+ g_signal_connect (network_monitor, "notify::connectivity",
+ G_CALLBACK (on_connectivity_changed), self);
+ g_signal_connect (network_monitor, "notify::network-available",
+- G_CALLBACK (on_connectivity_changed), NULL);
++ G_CALLBACK (on_connectivity_changed), self);
+
+ self->deferred_problems = g_ptr_array_new_with_free_func (g_object_unref);
+ }
+--
+2.26.2
+
diff --git a/0002-applet-Chain-up-in-dispose.patch b/0002-applet-Chain-up-in-dispose.patch
new file mode 100644
index 0000000..7d749e1
--- /dev/null
+++ b/0002-applet-Chain-up-in-dispose.patch
@@ -0,0 +1,26 @@
+From b08e7cbd26704b0a5400fdfab1f3f2e3922b102f Mon Sep 17 00:00:00 2001
+From: Ernestas Kulik <ekulik@redhat.com>
+Date: Fri, 15 May 2020 15:50:50 +0200
+Subject: [PATCH] applet: Chain up in dispose()
+
+Also something missed in 802a40a2f7c971b6533162e70b860e01ae3b5a27.
+---
+ src/applet/abrt-applet-application.c | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/src/applet/abrt-applet-application.c b/src/applet/abrt-applet-application.c
+index 8ea653bb..52ed5529 100644
+--- a/src/applet/abrt-applet-application.c
++++ b/src/applet/abrt-applet-application.c
+@@ -985,6 +985,8 @@ abrt_applet_application_dispose (GObject *object)
+ self = ABRT_APPLET_APPLICATION (object);
+
+ g_clear_pointer (&self->deferred_problems, g_ptr_array_unref);
++
++ G_OBJECT_CLASS (abrt_applet_application_parent_class)->dispose (object);
+ }
+
+ static void
+--
+2.26.2
+
diff --git a/abrt.spec b/abrt.spec
index 8e2a7db..52a89fb 100644
--- a/abrt.spec
+++ b/abrt.spec
@@ -49,11 +49,14 @@
Summary: Automatic bug detection and reporting tool
Name: abrt
Version: 2.14.2
-Release: 1%{?dist}
+Release: 2%{?dist}
License: GPLv2+
URL: https://abrt.readthedocs.org/
Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
+Patch0: 0001-applet-Pass-instance-pointer-to-signal-handler.patch
+Patch1: 0002-applet-Chain-up-in-dispose.patch
+
BuildRequires: git-core
BuildRequires: %{dbus_devel}
BuildRequires: hostname
@@ -1015,6 +1018,9 @@ killall abrt-dbus >/dev/null 2>&1 || :
%config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh
%changelog
+* Thu May 21 2020 Ernestas Kulik <ekulik@redhat.com> - 2.14.2-2
+- Add fix for https://bugzilla.redhat.com/show_bug.cgi?id=1836190
+
* Tue May 12 2020 Michal Fabik <mfabik@redhat.com> - 2.14.2-1
- Fix broken builds with --enable-authenticated-autoreporting
reply other threads:[~2026-08-03 11:05 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178575512127.1.4697726227103911435.rpms-abrt-18305b2c5069@fedoraproject.org \
--to=ekulik@redhat.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox