mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[FASTFAT]
Don't allow temporary attribute to be set on a directory. Even though our FastFAT totally ignores such attribute, this is illegal on Windows and makes SetFileAttribute fail, so do the same. CORE-13495 svn path=/trunk/; revision=75919
This commit is contained in:
@@ -181,6 +181,12 @@ VfatSetBasicInformation(
|
||||
|
||||
if (vfatFCBIsDirectory(FCB))
|
||||
{
|
||||
if (BooleanFlagOn(BasicInfo->FileAttributes, FILE_ATTRIBUTE_TEMPORARY))
|
||||
{
|
||||
DPRINT("Setting temporary attribute on a directory!\n");
|
||||
return STATUS_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
Attributes |= FILE_ATTRIBUTE_DIRECTORY;
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user