wpa_supplicant: Fix ml_ie_len type in wpa_bss_parse_basic_ml_element()
Since the Multi-Link element can be fragmented, use size_t instead of u8. Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski@intel.com>
This commit is contained in:
parent
cb90aa3acf
commit
9160540ec3
1 changed files with 1 additions and 1 deletions
|
@ -1584,7 +1584,7 @@ int wpa_bss_parse_basic_ml_element(struct wpa_supplicant *wpa_s,
|
|||
struct wpabuf *mlbuf;
|
||||
const struct element *elem;
|
||||
u8 mbssid_idx = 0;
|
||||
u8 ml_ie_len;
|
||||
size_t ml_ie_len;
|
||||
const struct ieee80211_eht_ml *eht_ml;
|
||||
const struct eht_ml_basic_common_info *ml_basic_common_info;
|
||||
u8 i, link_id;
|
||||
|
|
Loading…
Reference in a new issue