mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-17 05:45:14 +00:00
Fix empty-not-null data
This commit is contained in:
@@ -376,7 +376,7 @@ namespace BurnOutSharp.Wrappers
|
||||
|
||||
// Get the parent folder data
|
||||
byte[] folderData = GetUncompressedData((int)file.FolderIndex);
|
||||
if (folderData == null)
|
||||
if (folderData == null || folderData.Length == 0)
|
||||
return null;
|
||||
|
||||
// Get the segment that represents this file
|
||||
|
||||
Reference in New Issue
Block a user