Browse Source

Fix off by one error in PackReverseIndex.

The last 32bit offset is at Integer.MAX_VALUE.

Change-Id: Idee8be3c7887e1d0c8339ff94aceff36dbf000db
tags/v3.0.0.201305080800-m7
Colby Ranger 11 years ago
parent
commit
95ef1e83d0

+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackReverseIndex.java View File

@@ -108,7 +108,7 @@ public class PackReverseIndex {
int i64 = 0;
for (final MutableEntry me : index) {
final long o = me.getOffset();
if (o < Integer.MAX_VALUE)
if (o <= Integer.MAX_VALUE)
offsets32[i32++] = (int) o;
else
offsets64[i64++] = o;
@@ -120,7 +120,7 @@ public class PackReverseIndex {
int nth = 0;
for (final MutableEntry me : index) {
final long o = me.getOffset();
if (o < Integer.MAX_VALUE)
if (o <= Integer.MAX_VALUE)
nth32[Arrays.binarySearch(offsets32, (int) o)] = nth++;
else
nth64[Arrays.binarySearch(offsets64, o)] = nth++;

Loading…
Cancel
Save