diff options
author | René Scharfe <l.s.r@web.de> | 2017-07-15 22:00:45 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-07-17 14:54:56 -0700 |
commit | f331ab9d4cb21942dcde6d879aaca6a1784e8cb6 (patch) | |
tree | 64203c98b322d7b468b2649df734a2a3ea443fc1 /builtin/ls-files.c | |
parent | 578398071e45d296c3dc1de10acdbc15365e763f (diff) | |
download | git-f331ab9d4cb21942dcde6d879aaca6a1784e8cb6.tar.gz |
use MOVE_ARRAY
Simplify the code for moving members inside of an array and make it more
robust by using the helper macro MOVE_ARRAY. It calculates the size
based on the specified number of elements for us and supports NULL
pointers when that number is zero. Raw memmove(3) calls with NULL can
cause the compiler to (over-eagerly) optimize out later NULL checks.
This patch was generated with contrib/coccinelle/array.cocci and spatch
(Coccinelle).
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/ls-files.c')
-rw-r--r-- | builtin/ls-files.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/builtin/ls-files.c b/builtin/ls-files.c index b8514a0029..dc4a6aa3d9 100644 --- a/builtin/ls-files.c +++ b/builtin/ls-files.c @@ -378,8 +378,7 @@ static void prune_index(struct index_state *istate, } last = next; } - memmove(istate->cache, istate->cache + pos, - (last - pos) * sizeof(struct cache_entry *)); + MOVE_ARRAY(istate->cache, istate->cache + pos, last - pos); istate->cache_nr = last - pos; } |