mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-1211: Fixing bug in Application.getModuleOSFile()
This commit is contained in:
parent
9238203976
commit
c48ec61a4f
1 changed files with 5 additions and 1 deletions
|
@ -480,7 +480,11 @@ public class Application {
|
|||
exactFilename);
|
||||
}
|
||||
|
||||
throw new OSFileNotFoundException(exactFilename);
|
||||
if (file == null) {
|
||||
throw new OSFileNotFoundException(exactFilename);
|
||||
}
|
||||
|
||||
return file;
|
||||
}
|
||||
|
||||
private File findModuleFile(String subdirPath, String exactFilename) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue