mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[USBUHCI_NEW] Fix an infinite loop.
This commit is contained in:
parent
026a12fe39
commit
fc9d5d2f55
1 changed files with 1 additions and 1 deletions
|
@ -1724,7 +1724,7 @@ UhciAbortNonIsoTransfer(IN PUHCI_EXTENSION UhciExtension,
|
|||
if (TD == UhciEndpoint->HeadTD)
|
||||
IsHeadTD = TRUE;
|
||||
|
||||
while (TD && TD->UhciTransfer == UhciTransfer);
|
||||
while (TD && TD->UhciTransfer == UhciTransfer)
|
||||
{
|
||||
DPRINT_UHCI("UhciAbortNonIsoTransfer: TD - %p\n", TD);
|
||||
|
||||
|
|
Loading…
Reference in a new issue