mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[BASESRV]
Fix the previous fix. It's not necessary to use a different status value from the one that was returned. svn path=/branches/ntvdm/; revision=63100
This commit is contained in:
parent
8be11a5989
commit
3a94de4a0e
1 changed files with 1 additions and 5 deletions
|
@ -902,11 +902,7 @@ CSR_API(BaseSrvGetNextVDMCommand)
|
|||
}
|
||||
|
||||
/* Make sure we found the console record */
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
Status = STATUS_INVALID_PARAMETER;
|
||||
goto Cleanup;
|
||||
}
|
||||
if (!NT_SUCCESS(Status)) goto Cleanup;
|
||||
|
||||
/* Return the session ID */
|
||||
GetNextVdmCommandRequest->iTask = ConsoleRecord->SessionId;
|
||||
|
|
Loading…
Reference in a new issue