mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
[USBDRIVER]
- Fix a bug that resulted in us only copying half of the old keyboard data - CID 10402 svn path=/trunk/; revision=50077
This commit is contained in:
@@ -277,7 +277,7 @@ kbd_irq(PURB purb, PVOID pcontext)
|
||||
}
|
||||
|
||||
// Save old keyboard data
|
||||
RtlCopyMemory(pdev_ext->kbd_old, data, sizeof(data));
|
||||
RtlCopyMemory(pdev_ext->kbd_old, data, 8);
|
||||
|
||||
// resubmit the urb
|
||||
status = usb_submit_urb(pdev_ext->dev_mgr, purb);
|
||||
|
||||
Reference in New Issue
Block a user