diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-31 14:23:58 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-31 14:23:58 -0700 |
commit | 422dfaf079eec92ec75ef8f766d66404433ad0b1 (patch) | |
tree | 1e3f4b1904b4478b79c638a35e0886fc88c07f44 /http-push.c | |
parent | Merge branch 'master' into next (diff) | |
parent | tree_entry(): new tree-walking helper function (diff) | |
download | tgif-422dfaf079eec92ec75ef8f766d66404433ad0b1.tar.xz |
Merge branch 'lt/tree-2' into next
* lt/tree-2:
tree_entry(): new tree-walking helper function
Diffstat (limited to 'http-push.c')
-rw-r--r-- | http-push.c | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/http-push.c b/http-push.c index 72ad89ce11..b1c018a089 100644 --- a/http-push.c +++ b/http-push.c @@ -1715,6 +1715,7 @@ static struct object_list **process_tree(struct tree *tree, { struct object *obj = &tree->object; struct tree_desc desc; + struct name_entry entry; struct name_path me; obj->flags |= LOCAL; @@ -1734,18 +1735,11 @@ static struct object_list **process_tree(struct tree *tree, desc.buf = tree->buffer; desc.size = tree->size; - while (desc.size) { - unsigned mode; - const char *name; - const unsigned char *sha1; - - sha1 = tree_entry_extract(&desc, &name, &mode); - update_tree_entry(&desc); - - if (S_ISDIR(mode)) - p = process_tree(lookup_tree(sha1), p, &me, name); + while (tree_entry(&desc, &entry)) { + if (S_ISDIR(entry.mode)) + p = process_tree(lookup_tree(entry.sha1), p, &me, name); else - p = process_blob(lookup_blob(sha1), p, &me, name); + p = process_blob(lookup_blob(entry.sha1), p, &me, name); } free(tree->buffer); tree->buffer = NULL; |