[Symbian Installation File] Fix conditions not being initialized on Open().

This commit is contained in:
2023-10-08 16:52:09 +01:00
parent 0389696163
commit a2c6b8961a

View File

@@ -126,7 +126,8 @@ public sealed partial class Symbian
for(var i = 0; i < sh.languages; i++)
languages.Add(((LanguageCodes)br.ReadUInt16()).ToString("G"));
_files = new List<DecodedFileRecord>();
_files = new List<DecodedFileRecord>();
_conditions = new List<string>();
uint currentFile = 0;
uint offset = sh.files_ptr;