mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
Merge remote-tracking branch 'origin/Ghidra_11.1'
This commit is contained in:
commit
43eb848eac
6 changed files with 128 additions and 20 deletions
|
@ -104,7 +104,12 @@ public class DemangleSymbolScript extends GhidraScript {
|
|||
println("Successfully demangled\n" + name + '\n' + cmd.getResult());
|
||||
}
|
||||
else {
|
||||
println("Failed to demangle\n" + name + '\n' + cmd.getStatusMsg());
|
||||
String statusMsg = cmd.getStatusMsg();
|
||||
String msg = "Failed to demangle\n" + name;
|
||||
if (statusMsg != null) {
|
||||
msg += "\n" + statusMsg;
|
||||
}
|
||||
println(msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue