usb: gadget: udc: add null check before pointer dereference
Add null check before dereferencing dev->regs pointer inside net2280_led_shutdown() function. Addresses-Coverity-ID: 101783 Acked-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
This commit is contained in:
parent
d94e64cb24
commit
53e720f332
|
@ -3573,7 +3573,6 @@ static void net2280_remove(struct pci_dev *pdev)
|
|||
BUG_ON(dev->driver);
|
||||
|
||||
/* then clean up the resources we allocated during probe() */
|
||||
net2280_led_shutdown(dev);
|
||||
if (dev->requests) {
|
||||
int i;
|
||||
for (i = 1; i < 5; i++) {
|
||||
|
@ -3588,8 +3587,10 @@ static void net2280_remove(struct pci_dev *pdev)
|
|||
free_irq(pdev->irq, dev);
|
||||
if (dev->quirks & PLX_PCIE)
|
||||
pci_disable_msi(pdev);
|
||||
if (dev->regs)
|
||||
if (dev->regs) {
|
||||
net2280_led_shutdown(dev);
|
||||
iounmap(dev->regs);
|
||||
}
|
||||
if (dev->region)
|
||||
release_mem_region(pci_resource_start(pdev, 0),
|
||||
pci_resource_len(pdev, 0));
|
||||
|
|
Loading…
Reference in New Issue