mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +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:
parent
95e952c388
commit
e67bf5752c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue