X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=http-push.c;h=b1c018a08993dfd7278f3db35b9a140ab0e166d6;hb=ce0bd64299ae148ef61a63edcac635de41254cb5;hp=72ad89ce11217b56f4fe4a722249dfaf9ca86ac3;hpb=097dc3d8c32f4b85bf9701d5e1de98999ac25c1c;p=git.git diff --git a/http-push.c b/http-push.c index 72ad89ce..b1c018a0 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;