mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
[FASTFAT]
Do not set attribute "normal" on files. Bug #6384. svn path=/trunk/; revision=52914
This commit is contained in:
parent
ab7897e9d6
commit
e2c5e2345a
1 changed files with 1 additions and 1 deletions
|
@ -545,7 +545,7 @@ VfatCreateFile ( PDEVICE_OBJECT DeviceObject, PIRP Irp )
|
|||
RequestedDisposition == FILE_SUPERSEDE)
|
||||
{
|
||||
ULONG Attributes;
|
||||
Attributes = Stack->Parameters.Create.FileAttributes;
|
||||
Attributes = Stack->Parameters.Create.FileAttributes & ~FILE_ATTRIBUTE_NORMAL;
|
||||
|
||||
vfatSplitPathName(&PathNameU, NULL, &FileNameU);
|
||||
Status = VfatAddEntry (DeviceExt, &FileNameU, &pFcb, ParentFcb, RequestedOptions,
|
||||
|
|
Loading…
Reference in a new issue