mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-13 20:28:33 +10:00
Fix bugs.
This commit is contained in:
@@ -296,6 +296,11 @@ namespace PriFileFormat
|
||||
DataOffset = dataOffset;
|
||||
}
|
||||
}
|
||||
~ResourceMapSection ()
|
||||
{
|
||||
HierarchicalSchemaReference = null;
|
||||
CandidateSets = null;
|
||||
}
|
||||
}
|
||||
public enum ResourceValueType
|
||||
{
|
||||
@@ -318,6 +323,10 @@ namespace PriFileFormat
|
||||
DecisionIndex = decisionIndex;
|
||||
Candidates = candidates;
|
||||
}
|
||||
~CandidateSet ()
|
||||
{
|
||||
Candidates = null;
|
||||
}
|
||||
}
|
||||
|
||||
public class Candidate
|
||||
@@ -343,6 +352,12 @@ namespace PriFileFormat
|
||||
DataItem = null;
|
||||
Data = data;
|
||||
}
|
||||
~Candidate ()
|
||||
{
|
||||
SourceFile = null;
|
||||
DataItem = null;
|
||||
Data = null;
|
||||
}
|
||||
}
|
||||
public class HierarchicalSchemaReference
|
||||
{
|
||||
@@ -357,6 +372,10 @@ namespace PriFileFormat
|
||||
Unknown2 = unknown2;
|
||||
UniqueName = uniqueName;
|
||||
}
|
||||
~HierarchicalSchemaReference ()
|
||||
{
|
||||
VersionInfo = null;
|
||||
}
|
||||
}
|
||||
public struct ResourceMapItemRef
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user