aboutsummaryrefslogtreecommitdiff
path: root/unpack-trees.c
diff options
context:
space:
mode:
authorAdam Spiers <git@adamspiers.org>2012-12-27 02:32:29 +0000
committerJunio C Hamano <gitster@pobox.com>2012-12-28 12:07:47 -0800
commitf61988125130ac091bfb69bda5d62b0ad8f054c4 (patch)
tree93e6875927a0a788ed695740b25fc3fadfb0d408 /unpack-trees.c
parenta35341a86ecf354d46cf326ed9e0ffbceb54309d (diff)
downloadgit-f61988125130ac091bfb69bda5d62b0ad8f054c4.tar.gz
git-f61988125130ac091bfb69bda5d62b0ad8f054c4.tar.xz
dir.c: rename free_excludes() to clear_exclude_list()
It is clearer to use a 'clear_' prefix for functions which empty and deallocate the contents of a data structure without freeing the structure itself, and a 'free_' prefix for functions which also free the structure itself. http://article.gmane.org/gmane.comp.version-control.git/206128 Signed-off-by: Adam Spiers <git@adamspiers.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'unpack-trees.c')
-rw-r--r--unpack-trees.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unpack-trees.c b/unpack-trees.c
index c0da09428..ad621d95e 100644
--- a/unpack-trees.c
+++ b/unpack-trees.c
@@ -1153,7 +1153,7 @@ int unpack_trees(unsigned len, struct tree_desc *t, struct unpack_trees_options
*o->dst_index = o->result;
done:
- free_excludes(&el);
+ clear_exclude_list(&el);
if (o->path_exclude_check) {
path_exclude_check_clear(o->path_exclude_check);
free(o->path_exclude_check);