mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-0 corrected ProjectFileManager.dispose issue which could mask other
problems encountered during instantiation.
This commit is contained in:
parent
141d6d1acd
commit
ed7ddd1b42
1 changed files with 6 additions and 2 deletions
|
@ -1181,8 +1181,12 @@ public class ProjectFileManager implements ProjectData {
|
|||
repository.disconnect();
|
||||
repository = null;
|
||||
}
|
||||
rootFolderData.dispose();
|
||||
versionedFileSystem.dispose();
|
||||
if (rootFolderData != null) {
|
||||
rootFolderData.dispose();
|
||||
}
|
||||
if (versionedFileSystem != null) {
|
||||
versionedFileSystem.dispose();
|
||||
}
|
||||
fileSystem.dispose();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue