onsdag 12 augusti 2009 02:48:39 skrev "Adam W. Hawks" <awhawks@xxxxxxxxxxx>: > > From ef993e633cdcb1dddda5e71db1b62306df7ce83f Mon Sep 17 00:00:00 2001 > Date: Tue, 11 Aug 2009 20:02:56 -0400 > > When you call stripWorkDir with a relative path > you can get a string out of bounds error. > > This change fixes that problem by using the absolute paths > of the file instead of its relative name. > > Signed-off-by: Adam W. Hawks <awhawks@xxxxxxxxxxx> > --- > .../src/org/spearce/jgit/lib/Repository.java | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/org.spearce.jgit/src/org/spearce/jgit/lib/Repository.java b/org.spearce.jgit/src/org/spearce/jgit/lib/Repository.java > index 468cf4c..a68817b 100644 > --- a/org.spearce.jgit/src/org/spearce/jgit/lib/Repository.java > +++ b/org.spearce.jgit/src/org/spearce/jgit/lib/Repository.java > @@ -1036,7 +1036,7 @@ public static boolean isValidRefName(final String refName) { > * @return normalized repository relative path > */ > public static String stripWorkDir(File wd, File f) { > - String relName = f.getPath().substring(wd.getPath().length() + 1); > + String relName = f.getAbsolutePath().substring(wd.getPath().length() + 1); > relName = relName.replace(File.separatorChar, '/'); > return relName; > } Why not convert both paths? A trickier issue is that getAbsolutePath is very slow when the path is not absolute. I don't think we will always need to normalize in order to fix this. A few unit tests to show the cases solved would help. -- robin -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html