mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
Update idaxml.py
This commit is contained in:
parent
2484d2b548
commit
a312aaabb1
1 changed files with 3 additions and 0 deletions
|
@ -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:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue