mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 10:11:36 +00:00
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: Daniel Drake <dsd@laptop.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
16ebd60856
commit
8c1057e43c
@ -1254,6 +1254,7 @@ static int lbs_associate(struct lbs_private *priv,
|
||||
netif_tx_wake_all_queues(priv->dev);
|
||||
}
|
||||
|
||||
kfree(cmd);
|
||||
done:
|
||||
lbs_deb_leave_args(LBS_DEB_CFG80211, "ret %d", ret);
|
||||
return ret;
|
||||
|
@ -1314,6 +1314,7 @@ static void if_sdio_remove(struct sdio_func *func)
|
||||
kfree(packet);
|
||||
}
|
||||
|
||||
kfree(card);
|
||||
lbs_deb_leave(LBS_DEB_SDIO);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user