aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvinash Patil <[email protected]>2012-06-27 12:46:24 -0700
committerJohn W. Linville <[email protected]>2012-06-27 16:00:34 -0400
commitc9015b24b262bc7ea56cfd5d78983a73fb5ebd7d (patch)
treef6831c703291d74b680d01ae15b3c173643911b9
parent6bb51c70cabaadddc54a6454844eceba91a56083 (diff)
mwifiex: fix memory leak associated with IE manamgement
Free ap_custom_ie before return from function. Signed-off-by: Avinash Patil <[email protected]> Signed-off-by: Bing Zhao <[email protected]> Signed-off-by: John W. Linville <[email protected]>
-rw-r--r--drivers/net/wireless/mwifiex/ie.c1
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;
}