another small correction

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2267 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent b92561fb67
commit ab1ed053f5

@ -1062,7 +1062,7 @@ public class kelondroRecords {
while ((markedDeleted.contains(pos)) && (pos.index < USAGE.allCount())) pos.index++;
// initialize bulk
bulksize = 65536 / recordsize;
bulksize = Math.min(65536 / recordsize, USAGE.allCount());
bulkstart = -bulksize;
bulk = new byte[bulksize * recordsize];
}

Loading…
Cancel
Save