Commit 04d5821f authored by Kulikov Vasiliy's avatar Kulikov Vasiliy Committed by David S. Miller

eth16i: fix memory leak

Free allocated netdev if no probe is expected.
Signed-off-by: default avatarKulikov Vasiliy <segooon@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0eff683f
......@@ -1442,8 +1442,10 @@ int __init init_module(void)
dev->if_port = eth16i_parse_mediatype(mediatype[this_dev]);
if(io[this_dev] == 0) {
if(this_dev != 0) /* Only autoprobe 1st one */
if (this_dev != 0) { /* Only autoprobe 1st one */
free_netdev(dev);
break;
}
printk(KERN_NOTICE "eth16i.c: Presently autoprobing (not recommended) for a single card.\n");
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment