Fix DeltaWindow.clear() to release loaded buffer bytes.

It is possible for the buffer to be set but not the index. It
ocurrs when an exception occurs during creating an index, but
after the buffer is loaded. Furthermore, the cleared DeltaWindowEntry
should have been ent and not res.

Change-Id: I2e0d79540316635bf7aa43efd225e4eb38230844
This commit is contained in:
Colby Ranger 2012-12-03 12:23:14 -08:00
parent 4213a91c97
commit b9e485661d
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ private static long estimateSize(ObjectToPack ent) {
private void clear(DeltaWindowEntry ent) {
if (ent.index != null)
loaded -= ent.index.getIndexSize();
else if (res.buffer != null)
else if (ent.buffer != null)
loaded -= ent.buffer.length;
ent.set(null);
}