use alloc_ref_from_str() everywhere
Replace pairs of alloc_ref() and strcpy() with alloc_ref_from_str(), simplifying the code. In connect.c, also a pair of alloc_ref() and memcpy() is replaced -- the additional cost of a strlen() call should not have too much of an impact. Consistency and simplicity are more important. In remote.c, the code was allocating 11 bytes more than needed for the name part, but I couldn't see them being used for anything. Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
8009768e89
commit
b0b44bc7b2
@ -90,9 +90,8 @@ struct ref **get_remote_heads(int in, struct ref **list,
|
||||
continue;
|
||||
if (nr_match && !path_match(name, nr_match, match))
|
||||
continue;
|
||||
ref = alloc_ref(name_len + 1);
|
||||
ref = alloc_ref_from_str(buffer + 41);
|
||||
hashcpy(ref->old_sha1, old_sha1);
|
||||
memcpy(ref->name, buffer + 41, name_len + 1);
|
||||
*list = ref;
|
||||
list = &ref->next;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user