diff options
author | Zero_Chaos <zerochaos@gentoo.org> | 2015-10-05 18:47:16 -0400 |
---|---|---|
committer | Zero_Chaos <zerochaos@gentoo.org> | 2015-10-05 18:47:44 -0400 |
commit | f7eb63336462f8e02254f603196cad22fdc07989 (patch) | |
tree | 50e74e916f696d091c40321e3b60319c8635ab34 /net-wireless/wpa_supplicant/files | |
parent | sys-boot/os-prober: Version bump (diff) | |
download | gentoo-f7eb63336462f8e02254f603196cad22fdc07989.tar.gz gentoo-f7eb63336462f8e02254f603196cad22fdc07989.tar.bz2 gentoo-f7eb63336462f8e02254f603196cad22fdc07989.zip |
net-wireless/wpa_supplicant: version bump for bug #562158
Package-Manager: portage-2.2.22
Diffstat (limited to 'net-wireless/wpa_supplicant/files')
-rw-r--r-- | net-wireless/wpa_supplicant/files/wpa_supplicant-2.5-do-not-call-dbus-functions-with-NULL-path.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/net-wireless/wpa_supplicant/files/wpa_supplicant-2.5-do-not-call-dbus-functions-with-NULL-path.patch b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.5-do-not-call-dbus-functions-with-NULL-path.patch new file mode 100644 index 000000000000..deb6996784ce --- /dev/null +++ b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.5-do-not-call-dbus-functions-with-NULL-path.patch @@ -0,0 +1,12 @@ +diff -Naur wpa_supplicant/dbus/dbus_new_helpers.c wpa_supplicant-fixed/dbus/dbus_new_helpers.c +--- wpa_supplicant/dbus/dbus_new_helpers.c 2015-09-27 15:02:05.000000000 -0400 ++++ wpa_supplicant-fixed/dbus/dbus_new_helpers.c 2015-10-05 18:38:58.489713168 -0400 +@@ -847,7 +847,7 @@ + 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, |