mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-07-30 07:18:37 -09:00
Fix non-ASCII characters handing in IDA 6.x exporter
This commit is contained in:
@@ -246,7 +246,7 @@ class XmlExporter:
|
||||
elif ch == '\'' : return "'"
|
||||
elif ch == '"' : return """
|
||||
elif ch == '\x7F': return ''
|
||||
elif ord(ch) > 0x7F: return '&#x' + format((ord(ch),"x")) + ";"
|
||||
elif ord(ch) > 0x7F: return '&#x' + format(ord(ch),"x") + ";"
|
||||
return ch
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user