[FASTFAT]

Do not set attribute "normal" on files. Bug #6384.

svn path=/trunk/; revision=52914
This commit is contained in:
Dmitry Gorbachev 2011-07-27 02:36:56 +00:00
parent ab7897e9d6
commit e2c5e2345a

View file

@ -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,