mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 12:23:31 +00:00
[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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user