diff options
author | SZEDER Gábor <szeder.dev@gmail.com> | 2018-01-22 18:50:09 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-01-22 11:32:51 -0800 |
commit | f919ffebed3c570bf3c2a5f36444527ea5df42de (patch) | |
tree | 3d89f307b743c893848413a72d32b36e9fd8ec17 /dir.c | |
parent | 8279ed033f703d4115bee620dccd32a9ec94d9aa (diff) | |
download | git-f919ffebed3c570bf3c2a5f36444527ea5df42de.tar.gz |
Use MOVE_ARRAYsg/cocci-move-array
Use the helper macro MOVE_ARRAY to move arrays. This is shorter and
safer, as it automatically infers the size of elements.
Patch generated by Coccinelle and contrib/coccinelle/array.cocci in
Travis CI's static analysis build job.
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'dir.c')
-rw-r--r-- | dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -747,8 +747,8 @@ static struct untracked_cache_dir *lookup_untracked(struct untracked_cache *uc, FLEX_ALLOC_MEM(d, name, name, len); ALLOC_GROW(dir->dirs, dir->dirs_nr + 1, dir->dirs_alloc); - memmove(dir->dirs + first + 1, dir->dirs + first, - (dir->dirs_nr - first) * sizeof(*dir->dirs)); + MOVE_ARRAY(dir->dirs + first + 1, dir->dirs + first, + dir->dirs_nr - first); dir->dirs_nr++; dir->dirs[first] = d; return d; |