mirror of
https://github.com/reactos/reactos.git
synced 2025-06-10 04:14:53 +00:00
- Fix attributes
svn path=/trunk/; revision=38490
This commit is contained in:
parent
8172ef5174
commit
9e6bd133e6
1 changed files with 2 additions and 3 deletions
|
@ -116,15 +116,14 @@ CreateDirectoryW (
|
||||||
(lpSecurityAttributes ? lpSecurityAttributes->lpSecurityDescriptor : NULL));
|
(lpSecurityAttributes ? lpSecurityAttributes->lpSecurityDescriptor : NULL));
|
||||||
|
|
||||||
Status = NtCreateFile (&DirectoryHandle,
|
Status = NtCreateFile (&DirectoryHandle,
|
||||||
FILE_LIST_DIRECTORY | SYNCHRONIZE |
|
FILE_LIST_DIRECTORY | SYNCHRONIZE,
|
||||||
FILE_OPEN_FOR_BACKUP_INTENT,
|
|
||||||
&ObjectAttributes,
|
&ObjectAttributes,
|
||||||
&IoStatusBlock,
|
&IoStatusBlock,
|
||||||
NULL,
|
NULL,
|
||||||
FILE_ATTRIBUTE_NORMAL,
|
FILE_ATTRIBUTE_NORMAL,
|
||||||
FILE_SHARE_READ | FILE_SHARE_WRITE,
|
FILE_SHARE_READ | FILE_SHARE_WRITE,
|
||||||
FILE_CREATE,
|
FILE_CREATE,
|
||||||
FILE_DIRECTORY_FILE | FILE_SYNCHRONOUS_IO_NONALERT,
|
FILE_DIRECTORY_FILE | FILE_SYNCHRONOUS_IO_NONALERT | FILE_OPEN_FOR_BACKUP_INTENT,
|
||||||
NULL,
|
NULL,
|
||||||
0);
|
0);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue