Update idaxml.py

This commit is contained in:
ZERO-A-ONE 2025-08-20 23:05:20 +08:00 committed by GitHub
parent 2484d2b548
commit a312aaabb1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2206,6 +2206,9 @@ class XmlExporter(IdaXml):
signedhex: Boolean indicating if hex representation of signedhex: Boolean indicating if hex representation of
value is signed. value is signed.
""" """
# Check if value is None and handle it gracefully
if value is None:
return
if base == 10: if base == 10:
temp = "%d" % value temp = "%d" % value
else: else: