mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-03-06 19:51:13 +00:00
mac80211: fix injection in monitor mode
The location of the 802.11 header is calculated incorrectly due to a wrong placement of parentheses. Found by kmemcheck. Signed-off-by: Pavel Roskin <proski@gnu.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
f54c142725
commit
8ef86c7bfa
@ -1455,7 +1455,7 @@ int ieee80211_master_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
|||||||
monitor_iface = UNKNOWN_ADDRESS;
|
monitor_iface = UNKNOWN_ADDRESS;
|
||||||
|
|
||||||
len_rthdr = ieee80211_get_radiotap_len(skb->data);
|
len_rthdr = ieee80211_get_radiotap_len(skb->data);
|
||||||
hdr = (struct ieee80211_hdr *)skb->data + len_rthdr;
|
hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
|
||||||
hdrlen = ieee80211_hdrlen(hdr->frame_control);
|
hdrlen = ieee80211_hdrlen(hdr->frame_control);
|
||||||
|
|
||||||
/* check the header is complete in the frame */
|
/* check the header is complete in the frame */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user