mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-22 04:05:39 +00: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
@ -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…
Reference in New Issue
Block a user