From 57ba6b9118341c99c993e2287839d8a5dae2f85c Mon Sep 17 00:00:00 2001 From: Brian Sweeney Date: Thu, 5 Apr 2018 13:53:52 -0600 Subject: [PATCH] needed to close a db connection manually or we needed to wrap in try with resouces --- .../sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java b/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java index e63d906097..c46a933d80 100644 --- a/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java +++ b/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java @@ -115,7 +115,7 @@ public final class CommonFilesPanel extends javax.swing.JPanel { String dataSourceName = resultSet.getString(2); dataSourceMap.put(objectId, dataSourceName); } - + query.close(); } void addListenerToAll(ActionListener l) { //TODO double click the button