dect
/
linux-2.6
Archived
13
0
Fork 0

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: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
Axel Lin 2010-04-20 21:53:11 -07:00 committed by Dmitry Torokhov
parent 422dee56b8
commit 2ef2ed5976
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}