mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 01:39:21 +02:00
Fix typo.
I cannot find anything related to other issues described in the original issue. Version 7.x was fixed earlier. Fixes #559
This commit is contained in:
parent
04f7366a62
commit
5afdec1883
1 changed files with 2 additions and 2 deletions
|
@ -1520,7 +1520,7 @@ class XmlImporter:
|
|||
if self.has_attribute(structure, NAMESPACE) == False:
|
||||
return
|
||||
namespace = self.get_attribute(structure, NAMESPACE)
|
||||
name = namspace + '__' + name
|
||||
name = namespace + '__' + name
|
||||
name.replace('/','_')
|
||||
name.replace('.','_')
|
||||
dtyp = idaapi.get_struc_id(name)
|
||||
|
@ -1590,7 +1590,7 @@ class XmlImporter:
|
|||
if self.has_attribute(union, NAMESPACE) == False:
|
||||
return
|
||||
namespace = self.get_attribute(union, NAMESPACE)
|
||||
name = namspace + '__' + name
|
||||
name = namespace + '__' + name
|
||||
name.replace('/','_')
|
||||
name.replace('.','_')
|
||||
dtyp = idaapi.get_struc_id(name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue