Skip to content

Commit 8a22fb2

Browse files
committed
Merge branch 'issue-231'
This branch hopefully addresses #231 where `git repack` could not delete the object directory because there was still an open handle on it. Signed-off-by: Johannes Schindelin <[email protected]>
2 parents add1ebf + 78ff971 commit 8a22fb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sha1_file.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -3507,12 +3507,12 @@ static int for_each_file_in_obj_subdir(int subdir_nr,
35073507
break;
35083508
}
35093509
}
3510-
strbuf_setlen(path, baselen);
3510+
closedir(dir);
35113511

3512+
strbuf_setlen(path, baselen);
35123513
if (!r && subdir_cb)
35133514
r = subdir_cb(subdir_nr, path->buf, data);
35143515

3515-
closedir(dir);
35163516
return r;
35173517
}
35183518

0 commit comments

Comments
 (0)