From c94c631eda9e85b419fa41fa891b07b947ad6242 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Thu, 11 Mar 2010 11:36:26 -0800 Subject: [PATCH] eclipse-iplog: Correct line counts in initial commit The initial commit line counts where wrong in the IP log, as we were incrementing the file pointer by not the number of bytes in the line, but the offset of the start of the next line. Change-Id: Ia220ba235e9fa522f3f5591b76652c174bcb094d Signed-off-by: Shawn O. Pearce --- .../src/org/eclipse/jgit/iplog/IpLogGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.eclipse.jgit.iplog/src/org/eclipse/jgit/iplog/IpLogGenerator.java b/org.eclipse.jgit.iplog/src/org/eclipse/jgit/iplog/IpLogGenerator.java index 1f60ee562..040887ece 100644 --- a/org.eclipse.jgit.iplog/src/org/eclipse/jgit/iplog/IpLogGenerator.java +++ b/org.eclipse.jgit.iplog/src/org/eclipse/jgit/iplog/IpLogGenerator.java @@ -389,7 +389,7 @@ private void scanProjectCommits(RevCommit start) throws IOException { if (tw.getFileMode(0).getObjectType() == Constants.OBJ_BLOB) { byte[] buf = openBlob(0); for (int ptr = 0; ptr < buf.length;) { - ptr += RawParseUtils.nextLF(buf, ptr); + ptr = RawParseUtils.nextLF(buf, ptr); addedLines++; } }