mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NTOS:PS] Fix copypasta in NtQueryInformationJobObject. CID 1441354
This commit is contained in:
parent
34f2b7830d
commit
e8b79e89eb
1 changed files with 2 additions and 2 deletions
|
@ -546,10 +546,10 @@ NtQueryInformationJobObject (
|
|||
ProbeForWrite(JobInformation, JobInformationLength, RequiredAlign);
|
||||
}
|
||||
|
||||
/* But also return lenght if asked */
|
||||
/* But also return length if asked */
|
||||
if (ReturnLength != NULL)
|
||||
{
|
||||
ProbeForWrite(JobInformation, sizeof(ULONG), sizeof(ULONG));
|
||||
ProbeForWriteUlong(ReturnLength);
|
||||
}
|
||||
}
|
||||
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
||||
|
|
Loading…
Reference in a new issue