Browse Source

Merge "Don't copy more than the object size"

stable-0.9
Chris Aniszczyk 14 years ago committed by Code Review
parent
commit
f74d474f3c
  1. 6
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectLoader.java

6
org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectLoader.java

@ -169,14 +169,14 @@ public abstract class ObjectLoader {
final long sz = in.getSize();
byte[] tmp = new byte[1024];
long copied = 0;
for (;;) {
while (copied < sz) {
int n = in.read(tmp);
if (n < 0)
break;
throw new EOFException();
out.write(tmp, 0, n);
copied += n;
}
if (copied != sz)
if (0 <= in.read())
throw new EOFException();
} finally {
in.close();

Loading…
Cancel
Save