mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 04:36:40 +00:00
- Interpret STATUS_TIMEOUT as error in PsLockProcess.
svn path=/trunk/; revision=13257
This commit is contained in:
parent
93551abbd2
commit
a7cbe13790
1 changed files with 1 additions and 1 deletions
|
@ -2792,7 +2792,7 @@ PsLockProcess(PEPROCESS Process, BOOL Timeout)
|
||||||
KernelMode,
|
KernelMode,
|
||||||
FALSE,
|
FALSE,
|
||||||
Delay);
|
Delay);
|
||||||
if(!NT_SUCCESS(Status))
|
if(!NT_SUCCESS(Status) || STATUS_TIMEOUT)
|
||||||
{
|
{
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
if(Status == STATUS_TIMEOUT)
|
if(Status == STATUS_TIMEOUT)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue