Index: /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPLogParser.java
===================================================================
--- /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPLogParser.java	(revision 2247)
+++ /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPLogParser.java	(revision 2248)
@@ -158,6 +158,8 @@
         }
         
+        FileInputStream in = null;
         try {
-            parseFile(new FileInputStream(file));
+            in = new FileInputStream(file);
+            parseFile(in);
         }
         catch (FileNotFoundException e) {
@@ -165,4 +167,14 @@
             Console.logException(e);
             return;
+        }
+        finally {
+            if (in != null) {
+                try {
+                    in.close();
+                }
+                catch (IOException e) {
+                    Console.logException(e);
+                }
+            }
         }
     }
