mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
nl80211: Fix FT Action send command
Need to include payload header in the data length to avoid sending truncated FT Action frame.
This commit is contained in:
parent
c1bbb0cee1
commit
73fc617d5c
@ -5126,8 +5126,8 @@ static int nl80211_send_ft_action(void *priv, u8 action, const u8 *target_ap,
|
||||
* FT IEs
|
||||
*/
|
||||
|
||||
data_len = ies_len;
|
||||
data = os_malloc(2 + 2 * ETH_ALEN + data_len);
|
||||
data_len = 2 + 2 * ETH_ALEN + ies_len;
|
||||
data = os_malloc(data_len);
|
||||
if (data == NULL)
|
||||
return -1;
|
||||
pos = data;
|
||||
|
Loading…
Reference in New Issue
Block a user