[USBHUB_NEW] Fix USBH_CheckDeviceIDUnique return value.

This commit is contained in:
Thomas Faber 2018-03-27 08:59:36 +02:00
parent 65eabed2e1
commit 851a554b59
No known key found for this signature in database
GPG key ID: 076E7C3D44720826

View file

@ -4123,14 +4123,14 @@ USBH_CheckDeviceIDUnique(IN PUSBHUB_FDO_EXTENSION HubExtension,
if (NumberBytes == SN_DescriptorLength)
{
break;
return FALSE;
}
}
}
}
}
return FALSE;
return TRUE;
}
BOOLEAN