summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Halstrick <christian.halstrick@sap.com>2012-01-09 16:15:12 +0100
committerRobin Stocker <robin@nibor.org>2013-07-10 11:38:03 +0200
commit4b1f368033a6978e3cadd68f840586ab9bc4c538 (patch)
treec3d34bcb3e22fe0eb5fcfe5f2b8fb4b9a2cb3f18
parente8f6c831c99e2ea64ae110324e48c47b84f3a375 (diff)
downloadjgit-4b1f368033a6978e3cadd68f840586ab9bc4c538.tar.gz
jgit-4b1f368033a6978e3cadd68f840586ab9bc4c538.zip
Make sure checkout is not deleting folders outside the workingtree
There was a chance that jgit deletes symbolic links which point to the folder on top of the working tree. Make sure not to touch these resources. Thanks to Cedric Darloy who reported this bug on http://www.eclipse.org/forums/index.php/m/776910/#msg_776910 and to Ondrej Vrabec who reported bug 412489. Bug: 412489 Change-Id: I81735ba0394ef6794e9b2b8bdd8bd7e8b9c6460f Signed-off-by: Christian Halstrick <christian.halstrick@sap.com> Signed-off-by: Robin Stocker <robin@nibor.org>
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheCheckout.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheCheckout.java b/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheCheckout.java
index 684cf21ae8..5458426b1a 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheCheckout.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheCheckout.java
@@ -417,7 +417,7 @@ public class DirCacheCheckout {
builder.finish();
File file = null;
- String last = ""; //$NON-NLS-1$
+ String last = null;
// when deleting files process them in the opposite order as they have
// been reported. This ensures the files are deleted before we delete
// their parent folders
@@ -433,7 +433,7 @@ public class DirCacheCheckout {
if (!file.isDirectory())
toBeDeleted.add(r);
} else {
- if (!isSamePrefix(r, last))
+ if (last != null && !isSamePrefix(r, last))
removeEmptyParents(new File(repo.getWorkTree(), last));
last = r;
}