[VIDEOPRT]: <Committing on behalf of eVb> - Patch to make VideoPort INT10 Services return VP_STATUS instead of NT_STATUS. It is not the same thing.

svn path=/trunk/; revision=45779
This commit is contained in:
Sir Richard 2010-03-03 05:22:45 +00:00
parent 486e587cca
commit 4c15f8900e

View file

@ -187,7 +187,8 @@ IntInt10CallBios(
/* Detach and return status */
IntDetachFromCSRSS(&CallingProcess, &ApcState);
return Status;
if (NT_SUCCESS(Status)) return NO_ERROR;
return ERROR_INVALID_PARAMETER;
}
/* PUBLIC FUNCTIONS ***********************************************************/
@ -240,6 +241,6 @@ VideoPortInt10(
/* Detach from CSRSS */
IntDetachFromCSRSS(&CallingProcess, &ApcState);
return Status;
if (NT_SUCCESS(Status)) return NO_ERROR;
return ERROR_INVALID_PARAMETER;
}