diff options
author | Avinash Patil <patila@marvell.com> | 2012-06-27 12:46:24 -0700 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-06-27 16:00:34 -0400 |
commit | c9015b24b262bc7ea56cfd5d78983a73fb5ebd7d (patch) | |
tree | f6831c703291d74b680d01ae15b3c173643911b9 /drivers/net | |
parent | 6bb51c70cabaadddc54a6454844eceba91a56083 (diff) |
mwifiex: fix memory leak associated with IE manamgement
Free ap_custom_ie before return from function.
Signed-off-by: Avinash Patil <patila@marvell.com>
Signed-off-by: Bing Zhao <bzhao@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/mwifiex/ie.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/mwifiex/ie.c b/drivers/net/wireless/mwifiex/ie.c index ceb82cd749cc..383820a52beb 100644 --- a/drivers/net/wireless/mwifiex/ie.c +++ b/drivers/net/wireless/mwifiex/ie.c @@ -213,6 +213,7 @@ mwifiex_update_uap_custom_ie(struct mwifiex_private *priv, /* save assoc resp ie index after auto-indexing */ *assoc_idx = *((u16 *)pos); + kfree(ap_custom_ie); return ret; } |