diff options
author | Bjarke Istrup Pedersen <gurligebis@gentoo.org> | 2016-10-05 17:02:50 +0000 |
---|---|---|
committer | Bjarke Istrup Pedersen <gurligebis@gentoo.org> | 2016-10-05 17:03:21 +0000 |
commit | 0cff14d765f37cec7c324c1fc15a8768e9058397 (patch) | |
tree | f4ae72075b92dd847dd7a831485a08a624138168 /net-wireless/wpa_supplicant/files | |
parent | net-misc/openvswitch: Fix minor QA issues (diff) | |
download | gentoo-0cff14d765f37cec7c324c1fc15a8768e9058397.tar.gz gentoo-0cff14d765f37cec7c324c1fc15a8768e9058397.tar.bz2 gentoo-0cff14d765f37cec7c324c1fc15a8768e9058397.zip |
net-wireless/wpa_supplicant: Bumping to 2.6
Package-Manager: portage-2.3.1
Diffstat (limited to 'net-wireless/wpa_supplicant/files')
-rw-r--r-- | net-wireless/wpa_supplicant/files/wpa_supplicant-2.6-do-not-call-dbus-functions-with-NULL-path.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net-wireless/wpa_supplicant/files/wpa_supplicant-2.6-do-not-call-dbus-functions-with-NULL-path.patch b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.6-do-not-call-dbus-functions-with-NULL-path.patch new file mode 100644 index 000000000000..0f340c9566d2 --- /dev/null +++ b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.6-do-not-call-dbus-functions-with-NULL-path.patch @@ -0,0 +1,13 @@ +diff --git a/wpa_supplicant/dbus/dbus_new_helpers.c b/wpa_supplicant/dbus/dbus_new_helpers.c +index 45623f3..0fc3d08 100644 +--- a/wpa_supplicant/dbus/dbus_new_helpers.c ++++ b/wpa_supplicant/dbus/dbus_new_helpers.c +@@ -847,7 +847,7 @@ void wpa_dbus_mark_property_changed(struct wpas_dbus_priv *iface, + const struct wpa_dbus_property_desc *dsc; + int i = 0; + +- if (iface == NULL) ++ if (iface == NULL || path == NULL) + return; + + dbus_connection_get_object_path_data(iface->con, path, |