mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Do not try to decode empty path table in ISO9660/CD-i/HighSierra. Fixes #688
This commit is contained in:
@@ -40,7 +40,7 @@ namespace Aaru.Filesystems
|
||||
{
|
||||
PathTableEntryInternal[] DecodePathTable(byte[] data)
|
||||
{
|
||||
if(data is null)
|
||||
if(data is null || data.Length == 0)
|
||||
return null;
|
||||
|
||||
List<PathTableEntryInternal> table = new List<PathTableEntryInternal>();
|
||||
|
||||
Reference in New Issue
Block a user