]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
cpmac: do not leak struct net_device on phy_connect errors
authorFlorian Fainelli <florian@openwrt.org>
Sun, 20 Jun 2010 22:07:48 +0000 (22:07 +0000)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 2 Aug 2010 17:18:50 +0000 (10:18 -0700)
commit ed770f01360b392564650bf1553ce723fa46afec 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>
drivers/net/cpmac.c

index ec6b0af3d46b4f5d715587173cb5c293fea965e1..5cbdd37e0df7ed53f6f1f6ede7718a32010b894a 100644 (file)
@@ -1174,7 +1174,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))) {