mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-01 03:26:56 +08:00
GP-1876 fixing issue dll import names caused by original 1876 fix
This commit is contained in:
+6
-1
@@ -130,7 +130,12 @@ public abstract class AbstractProgramLoader implements Loader {
|
|||||||
continue;
|
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)) {
|
monitor)) {
|
||||||
results.add(loadedProgram);
|
results.add(loadedProgram);
|
||||||
programsToFixup.add(loadedProgram);
|
programsToFixup.add(loadedProgram);
|
||||||
|
|||||||
Reference in New Issue
Block a user