You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
freifunkist-firmware/package/hostapd/patches/520-fix_wps_pin_crash.patch

12 lines
245 B

--- 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';