Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ed770f01 authored by Florian Fainelli's avatar Florian Fainelli Committed by David S. Miller
Browse files

cpmac: do not leak struct net_device on phy_connect errors



If the call to phy_connect fails, we will return directly instead of freeing
the previously allocated struct net_device.

Signed-off-by: default avatarFlorian Fainelli <florian@openwrt.org>
CC: stable@kernel.org
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9735b7ef
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1181,7 +1181,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))) {