mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-3885: Fixing follow-on issue discovered when testing a Swift binary
This commit is contained in:
parent
043aa6cd15
commit
4c8c6aedbd
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ public class GnuDemanglerParser {
|
|||
// Note: this really is a 'special handler' check that used to be handled above. However,
|
||||
// some demangled operator strings begin with this text. If we do this check above,
|
||||
// then we will not correctly handle those operators.
|
||||
if (mangledSource.startsWith("_ZZ")) {
|
||||
if (mangledSource.startsWith("_ZZ") || mangledSource.startsWith("__ZZ")) {
|
||||
return new ItemInNamespaceHandler(demangled);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue