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

Commit a4503199 authored by Axel Lin's avatar Axel Lin Committed by Dmitry Torokhov
Browse files

Input: acecad - fix a memory leak in usb_acecad_probe error path



Add a missing usb_free_urb() in usb_acecad_probe() error path.

Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 8c5188b6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -229,12 +229,13 @@ static int usb_acecad_probe(struct usb_interface *intf, const struct usb_device_

	err = input_register_device(acecad->input);
	if (err)
		goto fail2;
		goto fail3;

	usb_set_intfdata(intf, acecad);

	return 0;

 fail3:	usb_free_urb(acecad->irq);
 fail2:	usb_free_coherent(dev, 8, acecad->data, acecad->data_dma);
 fail1: input_free_device(input_dev);
	kfree(acecad);