From: Christian Halstrick Date: Mon, 9 Jan 2012 15:15:12 +0000 (+0100) Subject: Make sure checkout is not deleting folders outside the workingtree X-Git-Tag: v3.1.0.201309270735-rc1~41 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4b1f368033a6978e3cadd68f840586ab9bc4c538;p=jgit.git 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 Signed-off-by: Robin Stocker --- 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; }