summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/connman/connman-gnome/0007-connman-gnome-fix-segfault-due-to-unchecked-null-val.patch
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2012-07-11 14:05:08 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-11 14:29:30 +0100
commitbf134eaf752cd5db6cce79ad4c1ae0f25d46b08e (patch)
treee0189764e17a46bcd5e2e1e1c2266e080fd9d300 /meta/recipes-connectivity/connman/connman-gnome/0007-connman-gnome-fix-segfault-due-to-unchecked-null-val.patch
parentb76a7bc8dcb7aed7d6f026e77a226837004c50af (diff)
downloadopenembedded-core-bf134eaf752cd5db6cce79ad4c1ae0f25d46b08e.tar.gz
connman-gnome: remove unused patches, they were all merged upstream
Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/connman/connman-gnome/0007-connman-gnome-fix-segfault-due-to-unchecked-null-val.patch')
-rw-r--r--meta/recipes-connectivity/connman/connman-gnome/0007-connman-gnome-fix-segfault-due-to-unchecked-null-val.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-connectivity/connman/connman-gnome/0007-connman-gnome-fix-segfault-due-to-unchecked-null-val.patch b/meta/recipes-connectivity/connman/connman-gnome/0007-connman-gnome-fix-segfault-due-to-unchecked-null-val.patch
deleted file mode 100644
index 3e054ba7af..0000000000
--- a/meta/recipes-connectivity/connman/connman-gnome/0007-connman-gnome-fix-segfault-due-to-unchecked-null-val.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 7225bf8e8e9bee42d7d7d02ba754b9fb30a877b6 Mon Sep 17 00:00:00 2001
-From: Paul Eggleton <paul.eggleton@linux.intel.com>
-Date: Mon, 16 Apr 2012 19:15:35 +0100
-Subject: [PATCH] connman-gnome: fix segfault due to unchecked null value
-
-If value is NULL here we should not pass it to g_value_get_boxed().
-
-Upstream-Status: Submitted
-
-Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
----
- common/connman-dbus.c | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/common/connman-dbus.c b/common/connman-dbus.c
-index 33ac623..822fc98 100644
---- a/common/connman-dbus.c
-+++ b/common/connman-dbus.c
-@@ -437,7 +437,7 @@ static void service_properties(DBusGProxy *proxy, GHashTable *hash,
- DBG("name %s type %d icon %s", name, type, icon);
-
- value = g_hash_table_lookup(hash, "IPv4.Configuration");
-- ipv4 = g_value_get_boxed (value);
-+ ipv4 = value ? g_value_get_boxed (value) : NULL;
-
- if (!ipv4)
- goto done;
---
-1.7.5.4
-