Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1323862
| From | Sudip Mukherjee <sudipm.mukherjee@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2] mac80211: fix memory leak |
| Date | 2016-02-02 09:00 +0100 |
| Message-ID | <qXE2u-7EE-11@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: Sudip Mukherjee <sudip@vectorindia.org>
On error we jumped to the error label and returned the error code but we
missed releasing sinfo.
Fixes: 5fe74014172d ("mac80211: avoid excessive stack usage in sta_info")
Reviewed-by: Julian Calaby <julian.calaby@gmail.com>
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
---
v2: added Fixes tag, Reviewed-by and From:.
net/mac80211/sta_info.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c
index 6c198e6..36e75c4 100644
--- a/net/mac80211/sta_info.c
+++ b/net/mac80211/sta_info.c
@@ -561,6 +561,7 @@ static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU)
__cleanup_single_sta(sta);
out_err:
mutex_unlock(&local->sta_mtx);
+ kfree(sinfo);
rcu_read_lock();
return err;
}
--
1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v2] mac80211: fix memory leak Sudip Mukherjee <sudipm.mukherjee@gmail.com> - 2016-02-02 09:00 +0100 Re: [PATCH v2] mac80211: fix memory leak Johannes Berg <johannes@sipsolutions.net> - 2016-02-02 16:20 +0100
csiph-web