diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-02-13 22:39:13 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-02-13 22:39:13 +0100 |
commit | cbf0240f82fc6b7072c7d18fa56caace4902a44b (patch) | |
tree | 5bf09c102c34b2984b2a09ac658afd673e876fd3 /commit.c | |
parent | Merge branch 'tg/split-index-fixes' (diff) | |
parent | Use MOVE_ARRAY (diff) | |
download | git-cbf0240f82fc6b7072c7d18fa56caace4902a44b.tar.xz git-cbf0240f82fc6b7072c7d18fa56caace4902a44b.zip |
Merge branch 'sg/cocci-move-array'
Code clean-up.
* sg/cocci-move-array:
Use MOVE_ARRAY
Diffstat (limited to 'commit.c')
-rw-r--r-- | commit.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -126,10 +126,8 @@ int register_commit_graft(struct commit_graft *graft, int ignore_dups) ALLOC_GROW(commit_graft, commit_graft_nr + 1, commit_graft_alloc); commit_graft_nr++; if (pos < commit_graft_nr) - memmove(commit_graft + pos + 1, - commit_graft + pos, - (commit_graft_nr - pos - 1) * - sizeof(*commit_graft)); + MOVE_ARRAY(commit_graft + pos + 1, commit_graft + pos, + commit_graft_nr - pos - 1); commit_graft[pos] = graft; return 0; } |