mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
Merge remote-tracking branch
'origin/GP-0_d-millar_fix_for_5538--SQUASHED' into patch (Closes #5538)
This commit is contained in:
commit
b712b18fcd
1 changed files with 2 additions and 1 deletions
|
@ -88,6 +88,8 @@ public class DbgLaunchProcessCommand extends AbstractDbgCommand<DbgThread> {
|
|||
|
||||
initialDirectory = fixPath(initialDirectory);
|
||||
environment = fixPath(environment);
|
||||
// NB: The intent here is to enable multi-line input via a single dialog field
|
||||
environment = environment.replace("\\0", "\0");
|
||||
|
||||
dbgeng.createProcess(dbgeng.getLocalServer(), StringUtils.join(newArgs, " "),
|
||||
initialDirectory, environment, createFlags, engCreateFlags, verifierFlags);
|
||||
|
@ -103,7 +105,6 @@ public class DbgLaunchProcessCommand extends AbstractDbgCommand<DbgThread> {
|
|||
output = output.substring(1);
|
||||
}
|
||||
output = output.replace("/", "\\");
|
||||
output = output.replace("\\0", "\0");
|
||||
return output;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue