aboutsummaryrefslogtreecommitdiff
path: root/shallow.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2025-12-23 11:33:16 +0900
committerJunio C Hamano <gitster@pobox.com>2025-12-23 11:33:16 +0900
commit86ebd83e6a78671624cf118e3a04d3afcfbe5df4 (patch)
treed3e3409efdfb8529b2256ade113798feabc876c2 /shallow.c
parent396df67739bed1615e92071961e3e4d2bf378c16 (diff)
parent8ea9492cf3505c379d1c573b02db90e6b480cc75 (diff)
downloadgit-86ebd83e6a78671624cf118e3a04d3afcfbe5df4.tar.xz
Merge branch 'jc/memzero-array'
Further application of MEMZERO_ARRAY() macro to the rest of the code base. * jc/memzero-array: cocci: use MEMZERO_ARRAY() a bit more coccicheck: emit the contents of cocci patch
Diffstat (limited to 'shallow.c')
-rw-r--r--shallow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shallow.c b/shallow.c
index 55b9cd9d3f..186e9178f3 100644
--- a/shallow.c
+++ b/shallow.c
@@ -709,7 +709,7 @@ void assign_shallow_commits_to_refs(struct shallow_info *info,
if (used) {
int bitmap_size = DIV_ROUND_UP(pi.nr_bits, 32) * sizeof(uint32_t);
- memset(used, 0, sizeof(*used) * info->shallow->nr);
+ MEMZERO_ARRAY(used, info->shallow->nr);
for (i = 0; i < nr_shallow; i++) {
const struct commit *c = lookup_commit(the_repository,
&oid[shallow[i]]);
@@ -774,7 +774,7 @@ static void post_assign_shallow(struct shallow_info *info,
trace_printf_key(&trace_shallow, "shallow: post_assign_shallow\n");
if (ref_status)
- memset(ref_status, 0, sizeof(*ref_status) * info->ref->nr);
+ MEMZERO_ARRAY(ref_status, info->ref->nr);
/* Remove unreachable shallow commits from "theirs" */
for (i = dst = 0; i < info->nr_theirs; i++) {