提交 debea2cd 编写于 作者: C Christophe JAILLET 提交者: David S. Miller

net: cxgb3_main: Fix a resource leak in a error path in 'init_one()'

A call to 'kfree_skb()' is missing in the error handling path of
'init_one()'.
This is already present in 'remove_one()' but is missing here.
Signed-off-by: NChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 5c4e2e1a
...@@ -3269,7 +3269,7 @@ static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -3269,7 +3269,7 @@ static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
if (!adapter->regs) { if (!adapter->regs) {
dev_err(&pdev->dev, "cannot map device registers\n"); dev_err(&pdev->dev, "cannot map device registers\n");
err = -ENOMEM; err = -ENOMEM;
goto out_free_adapter; goto out_free_adapter_nofail;
} }
adapter->pdev = pdev; adapter->pdev = pdev;
...@@ -3397,6 +3397,9 @@ static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -3397,6 +3397,9 @@ static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
if (adapter->port[i]) if (adapter->port[i])
free_netdev(adapter->port[i]); free_netdev(adapter->port[i]);
out_free_adapter_nofail:
kfree_skb(adapter->nofail_skb);
out_free_adapter: out_free_adapter:
kfree(adapter); kfree(adapter);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册