mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-31 04:30:31 +08:00
Merge remote-tracking branch 'origin/GP-1876_ghidravore_fix_import_dll_names_caused_by_orginal_GP-1876_change'
This commit is contained in:
+6
-1
@@ -130,7 +130,12 @@ public abstract class AbstractProgramLoader implements Loader {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (createProgramFile(loadedProgram, folder, name, messageLog,
|
||||
// If this is the main imported program, use the given name, otherwise, use the
|
||||
// internal program name. The first program in the list is the main imported program
|
||||
String domainFileName =
|
||||
loadedProgram == programs.get(0) ? name : loadedProgram.getName();
|
||||
|
||||
if (createProgramFile(loadedProgram, folder, domainFileName, messageLog,
|
||||
monitor)) {
|
||||
results.add(loadedProgram);
|
||||
programsToFixup.add(loadedProgram);
|
||||
|
||||
Reference in New Issue
Block a user