mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[USBHUB_NEW] Fix USBH_CheckDeviceIDUnique return value.
This commit is contained in:
parent
65eabed2e1
commit
851a554b59
1 changed files with 2 additions and 2 deletions
|
@ -4123,14 +4123,14 @@ USBH_CheckDeviceIDUnique(IN PUSBHUB_FDO_EXTENSION HubExtension,
|
|||
|
||||
if (NumberBytes == SN_DescriptorLength)
|
||||
{
|
||||
break;
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
BOOLEAN
|
||||
|
|
Loading…
Reference in a new issue