fix for OOB Exception

see http://forum.yacy-websuche.de/viewtopic.php?p=11598#p11598

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5417 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 17 years ago
parent 78c568331e
commit 8c3205b62e

@ -260,7 +260,8 @@ public final class kelondroBLOBHeap implements kelondroBLOB {
final int pos = (int) file.length();
int posFile = pos;
int posBuffer = 0;
byte[] ba = new byte[this.buffersize + (4 + this.index.row().primaryKeyLength) * this.buffer.size()];
byte[] ba = new byte[l + (4 + this.index.row().primaryKeyLength) * this.buffer.size()];
Map.Entry<String, byte[]> entry;
byte[] key, blob, b;
while (i.hasNext()) {

Loading…
Cancel
Save