Commit 9ae4f842 authored by Dan Carpenter's avatar Dan Carpenter Committed by Martin K. Petersen

scsi: bnx2fc: Fix NULL dereference in error handling

If "interface" is NULL then we can't release it and trying to will only
lead to an Oops.

Fixes: aea71a02 ("[SCSI] bnx2fc: Introduce interface structure for each vlan interface")
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent c64a87f9
...@@ -2364,7 +2364,7 @@ static int _bnx2fc_create(struct net_device *netdev, ...@@ -2364,7 +2364,7 @@ static int _bnx2fc_create(struct net_device *netdev,
if (!interface) { if (!interface) {
printk(KERN_ERR PFX "bnx2fc_interface_create failed\n"); printk(KERN_ERR PFX "bnx2fc_interface_create failed\n");
rc = -ENOMEM; rc = -ENOMEM;
goto ifput_err; goto netdev_err;
} }
if (is_vlan_dev(netdev)) { if (is_vlan_dev(netdev)) {
......
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