From: Jouni Malinen Date: Sat, 5 Sep 2015 16:28:56 +0000 (+0300) Subject: wpa_gui: Increase control interface message buffer for LIST_NETWORKS X-Git-Tag: hostap_2_5~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4f0c4d67dc6ee2fbd9623e189756c4e6b0e7d78;p=thirdparty%2Fhostap.git wpa_gui: Increase control interface message buffer for LIST_NETWORKS Double the buffer length from 2048 to 4096 to match the length used currently in wpa_supplicant. This allows wpa_gui to retrieve information for more networks than previously. Signed-off-by: Jouni Malinen --- diff --git a/wpa_supplicant/wpa_gui-qt4/wpagui.cpp b/wpa_supplicant/wpa_gui-qt4/wpagui.cpp index 3bd3a9ccb..a0aa05ed3 100644 --- a/wpa_supplicant/wpa_gui-qt4/wpagui.cpp +++ b/wpa_supplicant/wpa_gui-qt4/wpagui.cpp @@ -639,7 +639,7 @@ void WpaGui::updateStatus() void WpaGui::updateNetworks() { - char buf[2048], *start, *end, *id, *ssid, *bssid, *flags; + char buf[4096], *start, *end, *id, *ssid, *bssid, *flags; size_t len; int first_active = -1; int was_selected = -1;