Skip to content

Commit

Permalink
staging: gdm72xx: fix leaks at failure path in gdm_usb_probe()
Browse files Browse the repository at this point in the history
Error handling code in gdm_usb_probe() misses to deallocate
tx_ and rx_structs and to do usb_put_dev().

Found by Linux Driver Verification project (linuxtesting.org).

Signed-off-by: Alexey Khoroshilov <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
khoroshilov authored and gregkh committed Feb 7, 2014
1 parent ead00dd commit d3a874e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/staging/gdm72xx/gdm_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -635,11 +635,14 @@ static int gdm_usb_probe(struct usb_interface *intf,
#endif /* CONFIG_WIMAX_GDM72XX_USB_PM */

ret = register_wimax_device(phy_dev, &intf->dev);
if (ret)
release_usb(udev);

out:
if (ret) {
kfree(phy_dev);
kfree(udev);
usb_put_dev(usbdev);
} else {
usb_set_intfdata(intf, phy_dev);
}
Expand Down

0 comments on commit d3a874e

Please sign in to comment.