diff --git a/Legacy/Types/ArcARC.cs b/Legacy/Types/ArcARC.cs index 969fc121..78c1b5fa 100644 --- a/Legacy/Types/ArcARC.cs +++ b/Legacy/Types/ArcARC.cs @@ -56,6 +56,8 @@ namespace GameRes.Formats.Types if (0 == name_length || name_length > 0x100) return null; var name = input.ReadCString (name_length); + if (string.IsNullOrWhiteSpace (name)) + return null; var entry = new Entry { Name = name, Offset = input.Position,