diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-12-15 09:27:11 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-12-15 09:27:12 -0800 |
commit | 3b65c248a384a61501ea0f68a0ef564dcc94c278 (patch) | |
tree | 690214acee83d92dedd3cde242cc65ecf690058b /sha1_file.c | |
parent | Prepare for 2.6.5 (diff) | |
parent | prune: close directory earlier during loose-object directory traversal (diff) | |
download | tgif-3b65c248a384a61501ea0f68a0ef564dcc94c278.tar.xz |
Merge branch 'jk/prune-mtime' into maint
The helper used to iterate over loose object directories to prune
stale objects did not closedir() immediately when it is done with a
directory--a callback such as the one used for "git prune" may want
to do rmdir(), but it would fail on open directory on platforms
such as WinXP.
* jk/prune-mtime:
prune: close directory earlier during loose-object directory traversal
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sha1_file.c b/sha1_file.c index 4160e6882d..72289696d9 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -3507,12 +3507,12 @@ static int for_each_file_in_obj_subdir(int subdir_nr, break; } } - strbuf_setlen(path, baselen); + closedir(dir); + strbuf_setlen(path, baselen); if (!r && subdir_cb) r = subdir_cb(subdir_nr, path->buf, data); - closedir(dir); return r; } |