mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[NTOSKRNL]
- Do not return an NTSTATUS from KeSynchronizeExecution, which returns BOOLEAN [KERNEL32] - Do not return an NTSTATUS from BasepGetModuleHandleExW Found by MSVC. svn path=/trunk/; revision=53413
This commit is contained in:
parent
ca5f3d0740
commit
59cbfbc34a
2 changed files with 2 additions and 2 deletions
|
@ -818,7 +818,7 @@ BasepGetModuleHandleExW(BOOLEAN NoLock, DWORD dwPublicFlags, LPCWSTR lpwModuleNa
|
|||
/* Fail */
|
||||
BaseSetLastNTError(Status);
|
||||
if (phModule) *phModule = 0;
|
||||
return Status;
|
||||
return NT_SUCCESS(Status);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -591,7 +591,7 @@ KeSynchronizeExecution(IN OUT PKINTERRUPT Interrupt,
|
|||
KfLowerIrql(OldIrql);
|
||||
|
||||
/* Return status */
|
||||
return Status;
|
||||
return NT_SUCCESS(Status);
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue