зеркало из https://github.com/microsoft/git.git
builtin/branch.c: Use ALLOC_GROW instead of alloc_nr and xrealloc.
Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
1b9743462d
Коммит
fcbc0d8e82
|
@ -313,12 +313,7 @@ static int append_ref(const char *refname, const unsigned char *sha1, int flags,
|
|||
(struct object *)commit, refname);
|
||||
}
|
||||
|
||||
/* Resize buffer */
|
||||
if (ref_list->index >= ref_list->alloc) {
|
||||
ref_list->alloc = alloc_nr(ref_list->alloc);
|
||||
ref_list->list = xrealloc(ref_list->list,
|
||||
ref_list->alloc * sizeof(struct ref_item));
|
||||
}
|
||||
ALLOC_GROW(ref_list->list, ref_list->index + 1, ref_list->alloc);
|
||||
|
||||
/* Record the new item */
|
||||
newitem = &(ref_list->list[ref_list->index++]);
|
||||
|
|
Загрузка…
Ссылка в новой задаче