mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
Fixed IoCreateFile to recognize the FILE_NO_INTERMEDIATE_BUFFERING flag
svn path=/trunk/; revision=2556
This commit is contained in:
parent
72e047dd5b
commit
48908e14cc
1 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: create.c,v 1.52 2002/01/08 00:49:00 dwelch Exp $
|
||||
/* $Id: create.c,v 1.53 2002/01/26 06:20:16 phreak Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -344,7 +344,10 @@ IoCreateFile(OUT PHANDLE FileHandle,
|
|||
{
|
||||
FileObject->Flags |= FO_SYNCHRONOUS_IO;
|
||||
}
|
||||
|
||||
|
||||
if( CreateOptions & FILE_NO_INTERMEDIATE_BUFFERING )
|
||||
FileObject->Flags |= FO_NO_INTERMEDIATE_BUFFERING;
|
||||
|
||||
SecurityContext.SecurityQos = NULL; /* ?? */
|
||||
SecurityContext.AccessState = NULL; /* ?? */
|
||||
SecurityContext.DesiredAccess = DesiredAccess;
|
||||
|
|
Loading…
Reference in a new issue