From c711a214c1e9a4dfb5043bc1a11d0f76313b097e Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sun, 18 Mar 2007 13:38:19 -0700 Subject: [PATCH] Trivial cleanup of track_tree_refs() This makes "track_tree_refs()" use the same "tree_entry()" function for counting the entries as it does for actually traversing them a few lines later. Not a biggie, but the reason I care was that this was the only user of "update_tree_entry()" that didn't actually *extract* the tree entry first. It doesn't matter as things stand now, but it meant that a separate test-patch I had that avoided a few more "strlen()" calls by just saving the entry length in the entry descriptor and using it directly when updating wouldn't work without this patch. Signed-off-by: Linus Torvalds Signed-off-by: Junio C Hamano --- tree.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tree.c b/tree.c index 46923ee61b..24f8fb6766 100644 --- a/tree.c +++ b/tree.c @@ -153,10 +153,8 @@ static void track_tree_refs(struct tree *item) /* Count how many entries there are.. */ desc.buf = item->buffer; desc.size = item->size; - while (desc.size) { + while (tree_entry(&desc, &entry)) n_refs++; - update_tree_entry(&desc); - } /* Allocate object refs and walk it again.. */ i = 0; -- 2.11.4.GIT