Author: dgorbachev
Date: Wed Jul 27 02:36:56 2011
New Revision: 52914
URL:
http://svn.reactos.org/svn/reactos?rev=52914&view=rev
Log:
[FASTFAT]
Do not set attribute "normal" on files. Bug #6384.
Modified:
trunk/reactos/drivers/filesystems/fastfat/create.c
Modified: trunk/reactos/drivers/filesystems/fastfat/create.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/create.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/create.c [iso-8859-1] Wed Jul 27 02:36:56
2011
@@ -545,7 +545,7 @@
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,