mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[USBUHCI] Fix wrong sizeof access (#4070)
Reviewed-by: Victor Perevertkin <victor.perevertkin@reactos.org> Reviewed-by: Thomas Faber <thomas.faber@reactos.org>
This commit is contained in:
parent
feae6fbc64
commit
c73c86419e
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ UhciRHSetFeaturePortResetWorker(IN PUHCI_EXTENSION UhciExtension,
|
|||
RegPacket.UsbPortRequestAsyncCallback(UhciExtension,
|
||||
10, // TimerValue
|
||||
pPort,
|
||||
sizeof(pPort),
|
||||
sizeof(*pPort),
|
||||
UhciRHPortResetComplete);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue