diff --git a/reactos/drivers/usb/usbhub/usbhub.c b/reactos/drivers/usb/usbhub/usbhub.c index 826162d7fee..1cd193b0214 100644 --- a/reactos/drivers/usb/usbhub/usbhub.c +++ b/reactos/drivers/usb/usbhub/usbhub.c @@ -51,6 +51,10 @@ GetRootHubPointer( return STATUS_INSUFFICIENT_RESOURCES; } + /* Initialize the status block before sending the IRP */ + IoStatus.Status = STATUS_NOT_SUPPORTED; + IoStatus.Information = 0; + Status = IoCallDriver(Pdo, Irp); if (Status == STATUS_PENDING)