aboutsummaryrefslogtreecommitdiffstats
path: root/net/wireless
diff options
context:
space:
mode:
authorOla Olsson <ola1olsson@gmail.com>2015-12-12 23:17:17 +0100
committerJohannes Berg <johannes.berg@intel.com>2015-12-15 13:10:05 +0100
commite5dbe0701a0d7c6127f313a0f68f960176f0209e (patch)
tree19007a1d352df88b7781a64a0e669cdad1212efe /net/wireless
parentnl80211: fix a few memory leaks in reg.c (diff)
downloadlinux-dev-e5dbe0701a0d7c6127f313a0f68f960176f0209e.tar.xz
linux-dev-e5dbe0701a0d7c6127f313a0f68f960176f0209e.zip
nl80211: Fix potential memory leak in nl80211_set_wowlan
Compared to cfg80211_rdev_free_wowlan in core.h, the error goto label lacks the freeing of nd_config. Fix that. Signed-off-by: Ola Olsson <ola.olsson@sonymobile.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless')
-rw-r--r--net/wireless/nl80211.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
index c71e274c810a..624174f20b1f 100644
--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -9503,6 +9503,7 @@ static int nl80211_set_wowlan(struct sk_buff *skb, struct genl_info *info)
if (new_triggers.tcp && new_triggers.tcp->sock)
sock_release(new_triggers.tcp->sock);
kfree(new_triggers.tcp);
+ kfree(new_triggers.nd_config);
return err;
}
#endif