Fix possible memory leak (encountered in h1, see r7255)

* ToeThread.java
    run() - set local variable curi=null when finished with it, because the jvm seems to be holding on to it even after the containing block is finished
This commit is contained in:
nlevitt
2011-09-28 00:22:53 +00:00
parent f704ca5bc7
commit de856f10a6
@@ -187,6 +187,7 @@ implements MultiReporter, ProgressStatisticsReporter,
controller.getFrontier().endDisposition();
setCurrentCuri(null);
}
curi = null;
setStep(Step.FINISHING_PROCESS, null);
lastFinishTime = System.currentTimeMillis();