diff --git a/Aaru.Filesystems/ISO9660/Xattr.cs b/Aaru.Filesystems/ISO9660/Xattr.cs index 8c91b5513..c5bc30e04 100644 --- a/Aaru.Filesystems/ISO9660/Xattr.cs +++ b/Aaru.Filesystems/ISO9660/Xattr.cs @@ -74,7 +74,9 @@ public sealed partial class ISO9660 if(entry.Flags.HasFlag(FileFlags.Directory) || entry.Extents == null || entry.Extents.Count == 0) return ErrorNumber.NoError; - ErrorNumber errno = _image.ReadSectorLong(entry.Extents[0].extent * _blockSize / 2048, out byte[] sector); + ErrorNumber errno = _image.ReadSectorTag(entry.Extents[0].extent * _blockSize / 2048, + SectorTagType.CdSectorSubHeader, + out byte[] sector); if(errno != ErrorNumber.NoError) return errno;