mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-26 07:37:02 +08:00
Merge remote-tracking branch
'origin/GP-2533_Dan_issue4583-removeNosections' (Closes #4583)
This commit is contained in:
+2
-2
@@ -245,11 +245,11 @@ public class GdbInferiorImpl implements GdbInferior {
|
||||
// "nosections" is an unlikely section name. Goal is to exclude section lines.
|
||||
// TODO: Would be nice to save this switch, or better, choose at start based on version
|
||||
CompletableFuture<String> future =
|
||||
consoleCapture("maintenance info sections ALLOBJ nosections",
|
||||
consoleCapture("maintenance info sections ALLOBJ",
|
||||
CompletesWithRunning.CANNOT);
|
||||
return future.thenCompose(output -> {
|
||||
if (output.split("\n").length <= 1) {
|
||||
return consoleCapture("maintenance info sections -all-objects nosections")
|
||||
return consoleCapture("maintenance info sections -all-objects")
|
||||
.thenApply(out2 -> parseModuleNames(out2, true));
|
||||
}
|
||||
return CompletableFuture.completedFuture(parseModuleNames(output, false));
|
||||
|
||||
Reference in New Issue
Block a user