summaryrefslogtreecommitdiff
path: root/replace_object.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-03-18 20:50:21 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-03-18 20:50:21 (GMT)
commitfe9122a35213827348c521a16ffd0cf2652c4ac5 (patch)
tree7feb62b93a1b90ad365f582e926c11b75d847686 /replace_object.c
parenta8e1d711cc9531463fe312875553d56624eb9c37 (diff)
parentc7353967ca8ede681e9f8fbac98a650450631990 (diff)
downloadgit-fe9122a35213827348c521a16ffd0cf2652c4ac5.zip
git-fe9122a35213827348c521a16ffd0cf2652c4ac5.tar.gz
git-fe9122a35213827348c521a16ffd0cf2652c4ac5.tar.bz2
Merge branch 'dd/use-alloc-grow'
Replace open-coded reallocation with ALLOC_GROW() macro. * dd/use-alloc-grow: sha1_file.c: use ALLOC_GROW() in pretend_sha1_file() read-cache.c: use ALLOC_GROW() in add_index_entry() builtin/mktree.c: use ALLOC_GROW() in append_to_tree() attr.c: use ALLOC_GROW() in handle_attr_line() dir.c: use ALLOC_GROW() in create_simplify() reflog-walk.c: use ALLOC_GROW() replace_object.c: use ALLOC_GROW() in register_replace_object() patch-ids.c: use ALLOC_GROW() in add_commit() diffcore-rename.c: use ALLOC_GROW() diff.c: use ALLOC_GROW() commit.c: use ALLOC_GROW() in register_commit_graft() cache-tree.c: use ALLOC_GROW() in find_subtree() bundle.c: use ALLOC_GROW() in add_to_ref_list() builtin/pack-objects.c: use ALLOC_GROW() in check_pbase_path()
Diffstat (limited to 'replace_object.c')
-rw-r--r--replace_object.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/replace_object.c b/replace_object.c
index 4ee4c8d..0ab2dc1 100644
--- a/replace_object.c
+++ b/replace_object.c
@@ -41,12 +41,8 @@ static int register_replace_object(struct replace_object *replace,
return 1;
}
pos = -pos - 1;
- if (replace_object_alloc <= ++replace_object_nr) {
- replace_object_alloc = alloc_nr(replace_object_alloc);
- replace_object = xrealloc(replace_object,
- sizeof(*replace_object) *
- replace_object_alloc);
- }
+ ALLOC_GROW(replace_object, replace_object_nr + 1, replace_object_alloc);
+ replace_object_nr++;
if (pos < replace_object_nr)
memmove(replace_object + pos + 1,
replace_object + pos,