From: Alexey Khoroshilov Date: Fri, 10 Oct 2014 20:31:07 +0000 (+0400) Subject: can: esd_usb2: fix memory leak on disconnect X-Git-Tag: v3.14.26~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dcc95f3b5d7e9426499213cb3387852cde67f90d;p=platform%2Fkernel%2Flinux-stable.git can: esd_usb2: fix memory leak on disconnect commit efbd50d2f62fc1f69a3dcd153e63ba28cc8eb27f upstream. It seems struct esd_usb2 dev is not deallocated on disconnect. The patch adds the missing deallocation. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Alexey Khoroshilov Acked-by: Matthias Fuchs Signed-off-by: Marc Kleine-Budde Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/net/can/usb/esd_usb2.c b/drivers/net/can/usb/esd_usb2.c index 7fbe859..f34f7fa 100644 --- a/drivers/net/can/usb/esd_usb2.c +++ b/drivers/net/can/usb/esd_usb2.c @@ -1141,6 +1141,7 @@ static void esd_usb2_disconnect(struct usb_interface *intf) } } unlink_all_urbs(dev); + kfree(dev); } }