openwrtv4/package/hostapd/patches/520-fix_wps_pin_crash.patch
Felix Fietkau 4225e4b2d8 hostapd: update to 20120326
SVN-Revision: 31080
2012-03-27 10:42:47 +00:00

12 lines
245 B
Diff

--- a/hostapd/ctrl_iface.c
+++ b/hostapd/ctrl_iface.c
@@ -343,6 +343,9 @@ static int hostapd_ctrl_iface_wps_ap_pin
char *pos;
const char *pin_txt;
+ if (!hapd->wps)
+ return -1;
+
pos = os_strchr(txt, ' ');
if (pos)
*pos++ = '\0';