[KERNEL32]

CreateDirectory: handle the case when the FS doesn't support EAs.
This should fix VBox and is mandatory if we want to support MS FSD with FAT32

svn path=/trunk/; revision=54789
This commit is contained in:
Pierre Schweitzer
2011-12-31 02:01:34 +00:00
parent 5de2462b2a
commit 10ce3354a3
@@ -342,6 +342,12 @@ OpenTemplateDir:
}
else
{
if (Status == STATUS_EAS_NOT_SUPPORTED)
{
/* Extended attributes are not supported, so, this is OK */
/* FIXME: Would deserve a deeper look, comparing with Windows */
Status = STATUS_SUCCESS;
}
/* failure or no extended attributes present, break the loop */
break;
}