Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cda5ecf8 authored by Jiri Kosina's avatar Jiri Kosina
Browse files

USB HID: fix memory leak of usbhid_device



Add forgotten freeing of usbhid_device structure.

Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent de1a7b03
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -877,6 +877,7 @@ static struct hid_device *usb_hid_configure(struct usb_interface *intf)
	usb_free_urb(usbhid->urbin);
	usb_free_urb(usbhid->urbout);
	usb_free_urb(usbhid->urbctrl);
	kfree(usbhid);
fail_no_usbhid:
	hid_free_buffers(dev, hid);
	hid_free_device(hid);
@@ -912,6 +913,7 @@ static void hid_disconnect(struct usb_interface *intf)
	usb_free_urb(usbhid->urbin);
	usb_free_urb(usbhid->urbctrl);
	usb_free_urb(usbhid->urbout);
	kfree(usbhid);

	hid_free_buffers(hid_to_usb_dev(hid), hid);
	hid_free_device(hid);