[USBPORT] Fix level check in USBDI_QueryBusInformation (CID 1419403).

This commit is contained in:
Thomas Faber 2017-10-11 00:24:29 +02:00 committed by Thomas Faber
parent 41b94fd17b
commit b5289a2f6e

View file

@ -682,7 +682,7 @@ USBDI_QueryBusInformation(IN PVOID BusContext,
DPRINT("USBDI_QueryBusInformation: Level - %p\n", Level);
if ((Level != 0) || (Level != 1))
if ((Level != 0) && (Level != 1))
{
DPRINT1("USBDI_QueryBusInformation: Level should be 0 or 1\n");
return STATUS_NOT_SUPPORTED;