summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/mwifiex
diff options
context:
space:
mode:
authorAmitkumar Karwar <akarwar@marvell.com>2015-01-30 00:40:05 -0800
committerKalle Valo <kvalo@codeaurora.org>2015-02-03 15:28:53 +0200
commit7a1f4e61eb6417aecd20822a5f15e72d21c7f3f9 (patch)
treee53cfddb7b51c27ce9c58484831e9dbe7fb3b11d /drivers/net/wireless/mwifiex
parentee6f0dd8a836311883fedfe060f23e0da2176950 (diff)
downloadop-kernel-dev-7a1f4e61eb6417aecd20822a5f15e72d21c7f3f9.zip
op-kernel-dev-7a1f4e61eb6417aecd20822a5f15e72d21c7f3f9.tar.gz
mwifiex: fix memory leak in mwifiex_send_processed_packet()
Memory is leaked after downloading already processed packet. This patch fixes the problem by freeing returned skb. Other transmit paths don't have this problem. Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Cathy Luo <cluo@marvell.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/mwifiex')
-rw-r--r--drivers/net/wireless/mwifiex/wmm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/mwifiex/wmm.c b/drivers/net/wireless/mwifiex/wmm.c
index ffffd2c..ef717ac 100644
--- a/drivers/net/wireless/mwifiex/wmm.c
+++ b/drivers/net/wireless/mwifiex/wmm.c
@@ -1228,6 +1228,9 @@ mwifiex_send_processed_packet(struct mwifiex_private *priv,
case -EINPROGRESS:
if (adapter->iface_type != MWIFIEX_PCIE)
adapter->data_sent = false;
+ break;
+ case 0:
+ mwifiex_write_data_complete(adapter, skb, 0, ret);
default:
break;
}
OpenPOWER on IntegriCloud