From a312aaabb1ed236f8ec21169c41b29c5e4e146ed Mon Sep 17 00:00:00 2001 From: ZERO-A-ONE Date: Wed, 20 Aug 2025 23:05:20 +0800 Subject: [PATCH] Update idaxml.py --- GhidraBuild/IDAPro/Python/9xx/python/idaxml.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/GhidraBuild/IDAPro/Python/9xx/python/idaxml.py b/GhidraBuild/IDAPro/Python/9xx/python/idaxml.py index de39bff254..5fe9e3e011 100644 --- a/GhidraBuild/IDAPro/Python/9xx/python/idaxml.py +++ b/GhidraBuild/IDAPro/Python/9xx/python/idaxml.py @@ -2206,6 +2206,9 @@ class XmlExporter(IdaXml): signedhex: Boolean indicating if hex representation of value is signed. """ + # Check if value is None and handle it gracefully + if value is None: + return if base == 10: temp = "%d" % value else: