Commit 86c7ec9e authored by Johannes Berg's avatar Johannes Berg

mac80211: properly free skb when r-o-c for TX fails

When freeing the TX skb for an off-channel TX, use the correct
API to also free the ACK skb that might have been allocated.
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 90f9ba9b
...@@ -3474,7 +3474,7 @@ static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev, ...@@ -3474,7 +3474,7 @@ static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
params->wait, cookie, skb, params->wait, cookie, skb,
IEEE80211_ROC_TYPE_MGMT_TX); IEEE80211_ROC_TYPE_MGMT_TX);
if (ret) if (ret)
kfree_skb(skb); ieee80211_free_txskb(&local->hw, skb);
out_unlock: out_unlock:
mutex_unlock(&local->mtx); mutex_unlock(&local->mtx);
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment