summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-01-20 19:43:24 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-01-20 19:43:24 (GMT)
commit7a450b48e765e957762b015f30c89f21b1028771 (patch)
treee3159b57e83b614d4790f6546c956cb735808f1d /dir.c
parent4fd1359158ac633cb3cba74ce5b380eddda38bfd (diff)
parent2653a8c6fa0466828061a3132421cf13a5d6d924 (diff)
downloadgit-7a450b48e765e957762b015f30c89f21b1028771.zip
git-7a450b48e765e957762b015f30c89f21b1028771.tar.gz
git-7a450b48e765e957762b015f30c89f21b1028771.tar.bz2
Merge branch 'nd/dir-exclude-cleanup'
The "exclude_list" structure has the usual "alloc, nr" pair of fields to be used by ALLOC_GROW(), but clear_exclude_list() forgot to reset 'alloc' to 0 when it cleared 'nr'to discard the managed array. * nd/dir-exclude-cleanup: dir.c: clean the entire struct in clear_exclude_list()
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/dir.c b/dir.c
index d2a8f06..b8b4576 100644
--- a/dir.c
+++ b/dir.c
@@ -564,9 +564,7 @@ void clear_exclude_list(struct exclude_list *el)
free(el->excludes);
free(el->filebuf);
- el->nr = 0;
- el->excludes = NULL;
- el->filebuf = NULL;
+ memset(el, 0, sizeof(*el));
}
static void trim_trailing_spaces(char *buf)