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

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

Input: acecad - fix incorrect size parameter in usb_buffer_free



The size allocated by usb_buffer_alloc() is 8, however the size passed to
usb_buffer_free() in usb_acecad_disconnect() is 10.

Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 422dee56
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -256,7 +256,7 @@ static void usb_acecad_disconnect(struct usb_interface *intf)
		usb_kill_urb(acecad->irq);
		input_unregister_device(acecad->input);
		usb_free_urb(acecad->irq);
		usb_buffer_free(interface_to_usbdev(intf), 10, acecad->data, acecad->data_dma);
		usb_buffer_free(interface_to_usbdev(intf), 8, acecad->data, acecad->data_dma);
		kfree(acecad);
	}
}