From c38d1703955e284a1e7e2384ec86736e8689e642 Mon Sep 17 00:00:00 2001 From: alexjacks92 Date: Tue, 1 Apr 2014 11:29:59 -0400 Subject: [PATCH] Not nullifying util processes - presumed fix for javaIO flushing error. --- Core/src/org/sleuthkit/autopsy/coreutils/ExecUtil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/coreutils/ExecUtil.java b/Core/src/org/sleuthkit/autopsy/coreutils/ExecUtil.java index e5c3b3af27..5df3fc4ff7 100644 --- a/Core/src/org/sleuthkit/autopsy/coreutils/ExecUtil.java +++ b/Core/src/org/sleuthkit/autopsy/coreutils/ExecUtil.java @@ -90,7 +90,7 @@ public final class ExecUtil { outputStringRedirect = null; //gc process with its streams - proc = null; + //proc = null; return output; } @@ -137,7 +137,7 @@ public final class ExecUtil { logger.log(Level.INFO, aCommand + " exit value: " + exitVal); //gc process with its streams - proc = null; + //proc = null; } /**