summaryrefslogtreecommitdiffstats
path: root/package/network/services/hostapd/patches/420-fix_wps_pin_crash.patch
blob: 130bd53e08ab61beb7e64d6e1eb13d273146a93c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--- a/hostapd/ctrl_iface.c
+++ b/hostapd/ctrl_iface.c
@@ -480,6 +480,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';