mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
cpmac: do not leak struct net_device on phy_connect errors
commit ed770f0136 upstream.
If the call to phy_connect fails, we will return directly instead of freeing
the previously allocated struct net_device.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
eb6c515070
commit
19a7aff8e0
|
|
@ -1176,7 +1176,8 @@ static int __devinit cpmac_probe(struct platform_device *pdev)
|
|||
if (netif_msg_drv(priv))
|
||||
printk(KERN_ERR "%s: Could not attach to PHY\n",
|
||||
dev->name);
|
||||
return PTR_ERR(priv->phy);
|
||||
rc = PTR_ERR(priv->phy);
|
||||
goto fail;
|
||||
}
|
||||
|
||||
if ((rc = register_netdev(dev))) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user