mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
- Add checking of CompletionFilter parameter. This is fixed 3 wine tests for kernel32
svn path=/trunk/; revision=38529
This commit is contained in:
parent
1c312cc501
commit
b9ffb1676a
1 changed files with 6 additions and 0 deletions
|
@ -1121,6 +1121,12 @@ NtNotifyChangeDirectoryFile(IN HANDLE FileHandle,
|
|||
|
||||
/* Check if probing failed */
|
||||
if (!NT_SUCCESS(Status)) return Status;
|
||||
|
||||
/* Check if we have an correct parameter */
|
||||
if (!CompletionFilter)
|
||||
{
|
||||
return STATUS_INVALID_PARAMETER;
|
||||
}
|
||||
}
|
||||
|
||||
/* Get File Object */
|
||||
|
|
Loading…
Reference in a new issue