From 29fe2beac73f8232e215cf7f99db78e75a196d05 Mon Sep 17 00:00:00 2001 From: orbiter Date: Tue, 24 Apr 2007 21:55:57 +0000 Subject: [PATCH] possibly fixed a deadlock cannot find forum link now for that git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3593 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/http/httpc.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/http/httpc.java b/source/de/anomic/http/httpc.java index a26a96697..3bb1ffb6e 100644 --- a/source/de/anomic/http/httpc.java +++ b/source/de/anomic/http/httpc.java @@ -557,7 +557,7 @@ public final class httpc { int cutofftime = intTime(System.currentTimeMillis()) - maxNameCacheMissAge; int size; String k; - synchronized (nameCacheMissAges) { + synchronized (nameCacheMiss) { size = nameCacheMissAges.size(); while ((size > 0) && (size > maxNameCacheMissSize) || (nameCacheMissAges.getMinScore() < cutofftime)) {