blob: 03513eb99d09abc483a7aeaebbfd2f13ab7ec13d [file] [log] [blame]
developer66e89bc2024-04-23 14:50:01 +08001From dce3106e1c43076ab410af89f817e15cee7959a3 Mon Sep 17 00:00:00 2001
2From: Howard Hsu <howard-yh.hsu@mediatek.com>
3Date: Thu, 22 Sep 2022 16:08:09 +0800
4Subject: [PATCH 037/104] mtk: hostapd: Do not include HE capab IE if
5 associated sta's HE capab IE is invalid
6
7The parameter 'sta' passed to send_assoc_resp() might be NULL, so an
8NULL check is necessary before access the 'sta'.
9Only one such check was missed in this function, and this patch fixs it.
10
developer66e89bc2024-04-23 14:50:01 +080011Signed-off-by: Michael-CY Lee <michael-cy.lee@mediatek.com>
developer66e89bc2024-04-23 14:50:01 +080012---
13 src/ap/ieee802_11.c | 3 ++-
14 1 file changed, 2 insertions(+), 1 deletion(-)
15
16diff --git a/src/ap/ieee802_11.c b/src/ap/ieee802_11.c
17index bda61b998..d972a25f1 100644
18--- a/src/ap/ieee802_11.c
19+++ b/src/ap/ieee802_11.c
20@@ -4931,7 +4931,8 @@ static u16 send_assoc_resp(struct hostapd_data *hapd, struct sta_info *sta,
21 #endif /* CONFIG_IEEE80211AC */
22
23 #ifdef CONFIG_IEEE80211AX
24- if (hapd->iconf->ieee80211ax && !hapd->conf->disable_11ax) {
25+ if (hapd->iconf->ieee80211ax && !hapd->conf->disable_11ax && sta &&
26+ sta->flags & WLAN_STA_HE) {
27 p = hostapd_eid_he_capab(hapd, p, IEEE80211_MODE_AP);
28 p = hostapd_eid_he_operation(hapd, p);
29 p = hostapd_eid_cca(hapd, p);
30--
312.39.2
32