]> git.ipfire.org Git - thirdparty/git.git/blobdiff - builtin-remote.c
match_refs: search ref list tail internally
[thirdparty/git.git] / builtin-remote.c
index fda9a54a0c2f31b1071e4c401a3707375fc7a10d..9248e0aac79462261ba3cf2b21342c93c38fc1eb 100644 (file)
@@ -294,17 +294,14 @@ static int get_push_ref_states(const struct ref *remote_refs,
        struct ref_states *states)
 {
        struct remote *remote = states->remote;
-       struct ref *ref, *local_refs, *push_map, **push_tail;
+       struct ref *ref, *local_refs, *push_map;
        if (remote->mirror)
                return 0;
 
        local_refs = get_local_heads();
        push_map = copy_ref_list(remote_refs);
 
-       push_tail = &push_map;
-       while (*push_tail)
-               push_tail = &((*push_tail)->next);
-       match_refs(local_refs, push_map, &push_tail, remote->push_refspec_nr,
+       match_refs(local_refs, &push_map, remote->push_refspec_nr,
                   remote->push_refspec, MATCH_REFS_NONE);
 
        states->push.strdup_strings = 1;