mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Extended attributes are undefined format in CD-i and High Sierra Format, skip them in stat.
This commit is contained in:
@@ -200,7 +200,7 @@ namespace DiscImageChef.Filesystems.ISO9660
|
|||||||
|
|
||||||
if(entry.SymbolicLink != null) stat.Attributes |= FileAttributes.Symlink;
|
if(entry.SymbolicLink != null) stat.Attributes |= FileAttributes.Symlink;
|
||||||
|
|
||||||
if(entry.XattrLength == 0) return Errno.NoError;
|
if(entry.XattrLength == 0 || cdi || highSierra) return Errno.NoError;
|
||||||
|
|
||||||
// TODO: XA
|
// TODO: XA
|
||||||
uint eaSizeInSectors = (uint)(entry.XattrLength / 2048);
|
uint eaSizeInSectors = (uint)(entry.XattrLength / 2048);
|
||||||
|
|||||||
Reference in New Issue
Block a user