mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-22 04:05:39 +00:00
GP-5090 Corrected FileDataTypeManager.close() issue
This commit is contained in:
parent
31cd80b647
commit
8afb1e2c69
@ -288,12 +288,12 @@ public class FileDataTypeManager extends StandAloneDataTypeManager
|
||||
}
|
||||
|
||||
@Override
|
||||
public void close() {
|
||||
public synchronized void close() {
|
||||
if (packedDB != null) {
|
||||
super.close();
|
||||
packedDB.dispose();
|
||||
packedDB = null;
|
||||
}
|
||||
super.close();
|
||||
}
|
||||
|
||||
public boolean isClosed() {
|
||||
|
Loading…
Reference in New Issue
Block a user