sys,dll: pass NULL security descriptor to user-mode file system during Create

This commit is contained in:
Bill Zissimopoulos
2016-10-03 21:02:43 -07:00
parent 1f0f2fe094
commit e58ac1fbde
3 changed files with 11 additions and 1 deletions

View File

@ -358,7 +358,7 @@ static NTSTATUS FspFsvolCreateNoLock(
SetFlag(FileAttributes, FILE_ATTRIBUTE_DIRECTORY);
/* if we have a non-empty stream part, open the main file */
if (0 != StreamPart.Buffer)
if (0 != StreamPart.Length)
{
/* named streams can never be directories (even when attached to directories) */
if (FlagOn(CreateOptions, FILE_DIRECTORY_FILE))
@ -449,6 +449,7 @@ static NTSTATUS FspFsvolCreateNoLock(
Request->Req.Create.HasTraversePrivilege = HasTraversePrivilege;
Request->Req.Create.OpenTargetDirectory = BooleanFlagOn(Flags, SL_OPEN_TARGET_DIRECTORY);
Request->Req.Create.CaseSensitive = CaseSensitiveRequested;
Request->Req.Create.NamedStream = 0 != StreamPart.Length;
/* copy the security descriptor (if any) into the request */
if (0 != SecurityDescriptorSize)