GP-955 use correct DatatypeManager when producing structures for

PEx64unwindInfoDataType
This commit is contained in:
ghidra1 2021-05-18 16:33:47 -04:00
parent 73b07e4f48
commit 6d0cf7b4c4

View File

@ -155,7 +155,7 @@ public class PEx64UnwindInfoDataType extends DynamicDataType {
}
private Structure defineUnwindCodeStructure() {
StructureDataType unwindCode = new StructureDataType("UnwindCode", 0);
StructureDataType unwindCode = new StructureDataType("UnwindCode", 0, dataMgr);
unwindCode.setPackingEnabled(true);
try {
unwindCode.add(BYTE, "OffsetInProlog", null);