GP-0: Skip unnammed structs in IDA XML exporter (Closes #7211)

This commit is contained in:
Ryan Kurtz 2024-12-03 09:12:31 -05:00
parent 152bc30d6c
commit edf9353999

View file

@ -1,17 +1,17 @@
## ### ## ###
# IP: GHIDRA # IP: GHIDRA
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
# You may obtain a copy of the License at # You may obtain a copy of the License at
# #
# http://www.apache.org/licenses/LICENSE-2.0 # http://www.apache.org/licenses/LICENSE-2.0
# #
# Unless required by applicable law or agreed to in writing, software # Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, # distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
## ##
#--------------------------------------------------------------------- #---------------------------------------------------------------------
# idaxml.py - IDA XML classes # idaxml.py - IDA XML classes
@ -1596,6 +1596,10 @@ class XmlExporter(IdaXml):
structs = idautils.Structs() structs = idautils.Structs()
for struct in structs: for struct in structs:
(idx, sid, sname) = struct (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) s = ida_struct.get_struc(sid)
stype = STRUCTURE stype = STRUCTURE
if s.is_union() == True: if s.is_union() == True: