mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-15 21:23:23 +00:00
mac80211: free skb on error path of ieee80211_ibss_join()
Our new return also created a memleak. The skb should be freed before returning an error. Signed-off-by: Simon Wunderlich <siwu@hrz.tu-chemnitz.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
38c9d6641f
commit
cb71b8d803
@ -995,6 +995,7 @@ int ieee80211_ibss_join(struct ieee80211_sub_if_data *sdata,
|
||||
if (!ieee80211_set_channel_type(sdata->local, sdata,
|
||||
params->channel_type)) {
|
||||
mutex_unlock(&sdata->u.ibss.mtx);
|
||||
kfree_skb(skb);
|
||||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user