diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackReverseIndex.java b/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackReverseIndex.java index 990106b93..7eeb02833 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackReverseIndex.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackReverseIndex.java @@ -108,7 +108,7 @@ public PackReverseIndex(final PackIndex packIndex) { 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 PackReverseIndex(final PackIndex packIndex) { 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++;