Hello community,
here is the log from the commit of package NetworkManager-applet for
openSUSE:Factory checked in at 2018-06-18 13:48:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/NetworkManager-applet (Old)
and /work/SRC/openSUSE:Factory/.NetworkManager-applet.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "NetworkManager-applet"
Mon Jun 18 13:48:27 2018 rev:19 rq:617330 version:1.8.12
Changes:
--------
---
/work/SRC/openSUSE:Factory/NetworkManager-applet/NetworkManager-applet.changes
2018-06-13 15:16:15.503536673 +0200
+++
/work/SRC/openSUSE:Factory/.NetworkManager-applet.new/NetworkManager-applet.changes
2018-06-18 13:48:30.341191831 +0200
@@ -1,0 +2,7 @@
+Sun Jun 17 17:49:30 UTC 2018 - [email protected]
+
+- Add nma-fix-applet-segfault.patch: NMNetworkMenuItem: Don't
+ double-free priv->dupes, fix segfault on startup (boo#1097908,
+ glgo#GNOME/network-manager-applet#2).
+
+-------------------------------------------------------------------
New:
----
nma-fix-applet-segfault.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ NetworkManager-applet.spec ++++++
--- /var/tmp/diff_new_pack.Ov0auu/_old 2018-06-18 13:48:31.073164775 +0200
+++ /var/tmp/diff_new_pack.Ov0auu/_new 2018-06-18 13:48:31.073164775 +0200
@@ -34,6 +34,8 @@
Source:
http://download.gnome.org/sources/network-manager-applet/1.8/%{_name}-%{version}.tar.xz
# PATCH-NEEDS-REBASE nm-applet-private-connection.patch boo#751211 bgo#646187
[email protected] -- Create private connections if the user is not
authorised. Allows to create wifi connections without root access. Patch under
discussion upstream. (WAS: PATCH-FIX-UPSTREAM)
Patch0: nm-applet-private-connection.patch
+# PATCH-FIX-UPSTREAM nma-fix-applet-segfault.patch boo#1097908
glgo#GNOME/network-manager-applet#2 -- NMNetworkMenuItem: Don't double-free
priv->dupes
+Patch1: nma-fix-applet-segfault.patch
# PATCH-FIX-OPENSUSE
NetworkManager-gnome-bsc1003069-default-agent-owned-secrets.patch bsc#1003069
[email protected] -- Make sure secrets default to agent-owned (encrypted keyring).
Patch2:
NetworkManager-gnome-bsc1003069-default-agent-owned-secrets.patch
# nm-applet needs to be launched with --indicator and needs a startup delay
incase its started before the systray.
@@ -137,6 +139,7 @@
%setup -q -n %{_name}-%{version}
# Needs rebase.
# %%patch0 -p1
+%patch1 -p1
%patch2 -p1
%if %{with appindicator}
%patch5 -p1
++++++ nma-fix-applet-segfault.patch ++++++
>From 40a6dd2f22c32ec668287d019ef6667c297d17ec Mon Sep 17 00:00:00 2001
From: Jan Alexander Steffens (heftig) <[email protected]>
Date: Tue, 29 May 2018 22:05:07 +0200
Subject: [PATCH] NMNetworkMenuItem: Don't double-free priv->dupes
https://bugs.archlinux.org/task/58767
https://gitlab.gnome.org/GNOME/network-manager-applet/merge_requests/2
Fixes: 15ac92e6a42317e86ffb6d52a9ce5cacbf9e8c87
---
src/ap-menu-item.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/ap-menu-item.c b/src/ap-menu-item.c
index 92953c0..7d614f4 100644
--- a/src/ap-menu-item.c
+++ b/src/ap-menu-item.c
@@ -327,7 +327,6 @@ finalize (GObject *object)
g_free (priv->ssid_string);
g_slist_free_full (priv->dupes, g_free);
- g_slist_free (priv->dupes);
G_OBJECT_CLASS (nm_network_menu_item_parent_class)->finalize (object);
}
--
libgit2 0.27.1