mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-5090 Corrected FileDataTypeManager.close() issue
This commit is contained in:
parent
31cd80b647
commit
8afb1e2c69
1 changed files with 4 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue