mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
ieee802154: fix one possible memleak in ca8210_dev_com_init
[ Upstream commit88f46b3fe2] We should call destroy_workqueue to destroy mlme_workqueue in error branch. Fixes:ded845a781("ieee802154: Add CA8210 IEEE 802.15.4 device driver") Signed-off-by: Liu Jian <liujian56@huawei.com> Link: https://lore.kernel.org/r/20200720143315.40523-1-liujian56@huawei.com Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8c821f4829
commit
a24c2499cd
@@ -2923,6 +2923,7 @@ static int ca8210_dev_com_init(struct ca8210_priv *priv)
|
||||
);
|
||||
if (!priv->irq_workqueue) {
|
||||
dev_crit(&priv->spi->dev, "alloc of irq_workqueue failed!\n");
|
||||
destroy_workqueue(priv->mlme_workqueue);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user