mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
debugger: fix for launch param/args mismatch
This commit is contained in:
parent
2fb2f1fa26
commit
4f893e50d7
1 changed files with 3 additions and 3 deletions
|
@ -60,9 +60,9 @@ public class DbgModelTargetProcessLaunchConnectorImpl extends DbgModelTargetObje
|
||||||
protected Map<String, ParameterDescription<?>> computeParameters() {
|
protected Map<String, ParameterDescription<?>> computeParameters() {
|
||||||
HashMap<String, ParameterDescription<?>> map =
|
HashMap<String, ParameterDescription<?>> map =
|
||||||
new HashMap<String, ParameterDescription<?>>();
|
new HashMap<String, ParameterDescription<?>>();
|
||||||
ParameterDescription<String> param = ParameterDescription.create(String.class,
|
ParameterDescription<String> param = ParameterDescription.create(String.class, "args", true,
|
||||||
"CommandLine", true, "", "Cmd", "executable to be launched");
|
"", "Cmd", "executable to be launched");
|
||||||
map.put("Command line", param);
|
map.put("args", param);
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue