diff options
author | Karsten Blees <karsten.blees@dcon.de> | 2012-03-06 10:18:41 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-03-07 10:24:33 -0800 |
commit | d34e70d6b89b33c398403e872c0dd751d44c7844 (patch) | |
tree | b674f854d00d2145951d93076eb5f5c426d8de24 /builtin/prune.c | |
parent | 0dbe6592ccbd1a394a69a52074e3729d546fe952 (diff) | |
download | git-d34e70d6b89b33c398403e872c0dd751d44c7844.tar.gz |
fix deletion of .git/objects sub-directories in git-prune/repackkb/maint-prune-rmdir-closedir
Both git-prune and git-repack (and thus, git-gc) try to rmdir while
holding a DIR* handle on the directory. This can leave dangling
empty directories in the .git/objects on platforms where directory
cannot be removed while they are open.
First call closedir() and then rmdir(); that is more logical ordering.
Reported-by: John Chen <john0312@gmail.com>
Reported-by: Stefan Naewe <stefan.naewe@gmail.com>
Signed-off-by: Karsten Blees <blees@dcon.de>
Improved-and-Acked-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/prune.c')
-rw-r--r-- | builtin/prune.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/prune.c b/builtin/prune.c index 58d7cb8324..b99b635e44 100644 --- a/builtin/prune.c +++ b/builtin/prune.c @@ -85,9 +85,9 @@ static int prune_dir(int i, char *path) } fprintf(stderr, "bad sha1 file: %s/%s\n", path, de->d_name); } + closedir(dir); if (!show_only) rmdir(path); - closedir(dir); return 0; } |