From: Brandon Casey <drafnel@xxxxxxxxx> So not to leak file descriptors, close the directory after opening it. Signed-off-by: Brandon Casey <drafnel@xxxxxxxxx> --- builtin-clone.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/builtin-clone.c b/builtin-clone.c index 8713128..8936a51 100644 --- a/builtin-clone.c +++ b/builtin-clone.c @@ -215,6 +215,7 @@ static void copy_or_link_directory(char *src, char *dest) die("failed to create link %s\n", dest); } } + closedir(dir); } static const struct ref *clone_local(const char *src_repo, -- 1.5.5.1.447.geb0a7 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html