diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-06-25 16:36:25 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-06-25 18:25:34 +0200 |
commit | daac8bf7017492a288f20e8e05a1de8ba243ef90 (patch) | |
tree | 41ab670513340e7c45d1415dbb84df50da17afa7 /gnome-base/gnome-shell/files | |
parent | x11-wm/mutter: Version bump (diff) | |
download | gentoo-daac8bf7017492a288f20e8e05a1de8ba243ef90.tar.gz gentoo-daac8bf7017492a288f20e8e05a1de8ba243ef90.tar.bz2 gentoo-daac8bf7017492a288f20e8e05a1de8ba243ef90.zip |
gnome-base/gnome-shell: Drop old
Package-Manager: portage-2.3.0_rc1
Diffstat (limited to 'gnome-base/gnome-shell/files')
-rw-r--r-- | gnome-base/gnome-shell/files/gnome-shell-3.18-fix-crash.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/gnome-base/gnome-shell/files/gnome-shell-3.18-fix-crash.patch b/gnome-base/gnome-shell/files/gnome-shell-3.18-fix-crash.patch deleted file mode 100644 index d19049ca5de0..000000000000 --- a/gnome-base/gnome-shell/files/gnome-shell-3.18-fix-crash.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 021cecbce289f1d9c68a156d5b8dd204a73bc715 Mon Sep 17 00:00:00 2001 -From: Christophe Fergeau <cfergeau@redhat.com> -Date: Sun, 20 Dec 2015 20:51:52 +0100 -Subject: [PATCH] NetworkAgent: Fix double-unref in get_secrets_keyring_cb() - -In get_secrets_keyring_cb, we own a ref on the 'attributes' hash table -from secret_item_get_attributes), and a ref on the 'secret' object (from -secret_item_get_secret(), but in the SHELL_KEYRING_SK_TAG case, we unref -these once before breaking out of the loop, and the second time after -breaking out of the loop. - -https://bugzilla.gnome.org/show_bug.cgi?id=759708 ---- - src/shell-network-agent.c | 2 -- - 1 file changed, 2 deletions(-) - -diff --git a/src/shell-network-agent.c b/src/shell-network-agent.c -index 5d99167..da0f7e5 100644 ---- a/src/shell-network-agent.c -+++ b/src/shell-network-agent.c -@@ -314,8 +314,6 @@ get_secrets_keyring_cb (GObject *source, - - secrets_found = TRUE; - -- g_hash_table_unref (attributes); -- secret_value_unref (secret); - break; - } - } |