]> source.dussan.org Git - jgit.git/commitdiff
Make sure checkout is not deleting folders outside the workingtree 35/4935/2
authorChristian Halstrick <christian.halstrick@sap.com>
Mon, 9 Jan 2012 15:15:12 +0000 (16:15 +0100)
committerRobin Stocker <robin@nibor.org>
Wed, 10 Jul 2013 09:38:03 +0000 (11:38 +0200)
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>
org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheCheckout.java

index 684cf21ae8a615067b8ab4bbb177311b4d03ad28..5458426b1abded07e55aaf493afd8452b66194f1 100644 (file)
@@ -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;
                                }