mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[VIDEOPRT] Correctly return failure when adapter can't be found
This was wrong in both call chains (PNP case or legacy case) HwFindAdapter returns a VP_STATUS, while we were expecting a NTSTATUS. CORE-17789
This commit is contained in:
parent
87b74f2901
commit
807af6a4d1
1 changed files with 8 additions and 11 deletions
|
@ -345,6 +345,7 @@ IntVideoPortFindAdapter(
|
|||
{
|
||||
PVIDEO_PORT_DEVICE_EXTENSION DeviceExtension;
|
||||
NTSTATUS Status;
|
||||
VP_STATUS vpStatus;
|
||||
VIDEO_PORT_CONFIG_INFO ConfigInfo;
|
||||
SYSTEM_BASIC_INFORMATION SystemBasicInfo;
|
||||
UCHAR Again = FALSE;
|
||||
|
@ -405,32 +406,27 @@ IntVideoPortFindAdapter(
|
|||
DriverExtension->InitializationData.HwDeviceExtensionSize);
|
||||
|
||||
/* FIXME: Need to figure out what string to pass as param 3. */
|
||||
Status = DriverExtension->InitializationData.HwFindAdapter(
|
||||
vpStatus = DriverExtension->InitializationData.HwFindAdapter(
|
||||
&DeviceExtension->MiniPortDeviceExtension,
|
||||
DriverExtension->HwContext,
|
||||
NULL,
|
||||
&ConfigInfo,
|
||||
&Again);
|
||||
|
||||
if (Status == ERROR_DEV_NOT_EXIST)
|
||||
if (vpStatus == ERROR_DEV_NOT_EXIST)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
else if (Status == NO_ERROR)
|
||||
{
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
ERR_(VIDEOPRT, "HwFindAdapter call failed with error 0x%X\n", Status);
|
||||
goto Failure;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
/* FIXME: Need to figure out what string to pass as param 3. */
|
||||
Status = DriverExtension->InitializationData.HwFindAdapter(
|
||||
vpStatus = DriverExtension->InitializationData.HwFindAdapter(
|
||||
&DeviceExtension->MiniPortDeviceExtension,
|
||||
DriverExtension->HwContext,
|
||||
NULL,
|
||||
|
@ -438,9 +434,10 @@ IntVideoPortFindAdapter(
|
|||
&Again);
|
||||
}
|
||||
|
||||
if (Status != NO_ERROR)
|
||||
if (vpStatus != NO_ERROR)
|
||||
{
|
||||
ERR_(VIDEOPRT, "HwFindAdapter call failed with error 0x%X\n", Status);
|
||||
ERR_(VIDEOPRT, "HwFindAdapter call failed with error 0x%X\n", vpStatus);
|
||||
Status = STATUS_UNSUCCESSFUL;
|
||||
goto Failure;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue