public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/abrt] update-2.17.9-f44: Add fix for #1836190
@ 2026-08-03 11:05 Ernestas Kulik
0 siblings, 0 replies; only message in thread
From: Ernestas Kulik @ 2026-08-03 11:05 UTC (permalink / raw)
To: git-commits
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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-08-03 11:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-03 11:05 [rpms/abrt] update-2.17.9-f44: Add fix for #1836190 Ernestas Kulik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox