Commit 8c1057e4 authored by Daniel Drake's avatar Daniel Drake Committed by John W. Linville

libertas: fix two memory leaks

The if_sdio_card structure was never being freed, and neither
was the command structure used for association.
Signed-off-by: default avatarDaniel Drake <dsd@laptop.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 16ebd608
...@@ -1254,6 +1254,7 @@ static int lbs_associate(struct lbs_private *priv, ...@@ -1254,6 +1254,7 @@ static int lbs_associate(struct lbs_private *priv,
netif_tx_wake_all_queues(priv->dev); netif_tx_wake_all_queues(priv->dev);
} }
kfree(cmd);
done: done:
lbs_deb_leave_args(LBS_DEB_CFG80211, "ret %d", ret); lbs_deb_leave_args(LBS_DEB_CFG80211, "ret %d", ret);
return ret; return ret;
......
...@@ -1314,6 +1314,7 @@ static void if_sdio_remove(struct sdio_func *func) ...@@ -1314,6 +1314,7 @@ static void if_sdio_remove(struct sdio_func *func)
kfree(packet); kfree(packet);
} }
kfree(card);
lbs_deb_leave(LBS_DEB_SDIO); lbs_deb_leave(LBS_DEB_SDIO);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment