mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 21:51:40 +00:00
applicom: dereferencing NULL on error path
This is a static checker fix. The "dev" variable is always NULL after
the while statement so we would be dereferencing a NULL pointer here.
Fixes: 819a3eba42
('[PATCH] applicom: fix error handling')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
63fa80cd58
commit
8bab797c6e
@ -345,7 +345,6 @@ out:
|
||||
free_irq(apbs[i].irq, &dummy);
|
||||
iounmap(apbs[i].RamIO);
|
||||
}
|
||||
pci_disable_device(dev);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user