mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
GP-0: Skip unnammed structs in IDA XML exporter (Closes #7211)
This commit is contained in:
parent
152bc30d6c
commit
edf9353999
1 changed files with 17 additions and 13 deletions
|
@ -1596,6 +1596,10 @@ class XmlExporter(IdaXml):
|
|||
structs = idautils.Structs()
|
||||
for struct in structs:
|
||||
(idx, sid, sname) = struct
|
||||
if sname is None:
|
||||
# Skip unnamed structs. Alternatively the exporter could
|
||||
# generate a unique temporary name.
|
||||
continue
|
||||
s = ida_struct.get_struc(sid)
|
||||
stype = STRUCTURE
|
||||
if s.is_union() == True:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue