mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 01:39:21 +02:00
Merge remote-tracking branch 'origin/patch'
This commit is contained in:
commit
f1dcb64e22
1 changed files with 4 additions and 0 deletions
|
@ -164,6 +164,10 @@ public class RttiUtil {
|
|||
name = name.replace("'", "").replace("`", "");
|
||||
try {
|
||||
symbol.setName(name, symbol.getSource());
|
||||
|
||||
//do this in case the mangled name is currently primary which will cause demangler
|
||||
//to replace the ticks again once demangled since demangler only demangles primary
|
||||
symbol.setPrimary();
|
||||
return true;
|
||||
}
|
||||
catch (DuplicateNameException e) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue