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:
Jouni Malinen 2010-03-12 00:41:03 +02:00
parent c1bbb0cee1
commit 73fc617d5c

View File

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