mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-19 16:40:38 -09:00
GP-0 fix missing category path for NoteGnuPropertyElement data types
This commit is contained in:
@@ -200,8 +200,8 @@ public class NoteGnuProperty extends ElfNote {
|
||||
}
|
||||
|
||||
private DataType getElementDataType(DataTypeManager dtm, NotePropertyElement element) {
|
||||
StructureDataType result =
|
||||
new StructureDataType("NoteGnuPropertyElement_%d".formatted(element.length()), 0, dtm);
|
||||
StructureDataType result = new StructureDataType(StandardElfInfoProducer.ELF_CATEGORYPATH,
|
||||
"NoteGnuPropertyElement_%d".formatted(element.length()), 0, dtm);
|
||||
|
||||
result.add(StructConverter.DWORD, "prType", null);
|
||||
result.add(StructConverter.DWORD, "prDatasz", null);
|
||||
|
||||
Reference in New Issue
Block a user