diff mbox series

xcalloc: use CALLOC_ARRAY() when applicable

Message ID xmqqft0vzzm9.fsf_-_@gitster.g (mailing list archive)
State Accepted
Commit 486f4bd183b2b9e3355c7d0d47462951c659613d
Headers show
Series xcalloc: use CALLOC_ARRAY() when applicable | expand

Commit Message

Junio C Hamano March 16, 2021, 12:55 a.m. UTC
These are for codebase before Git 2.31

Signed-off-by: Junio C Hamano <gitster@pobox.com>
---

 * In addition to fixes to topics in flight, I found these in the
   codebase dating as far back as 2.27 days.

 builtin/receive-pack.c | 8 +++-----
 t/helper/test-bloom.c  | 2 +-
 2 files changed, 4 insertions(+), 6 deletions(-)

Comments

Derrick Stolee March 16, 2021, 11:43 a.m. UTC | #1
On 3/15/2021 8:55 PM, Junio C Hamano wrote:
> These are for codebase before Git 2.31
> 
> Signed-off-by: Junio C Hamano <gitster@pobox.com>
> ---
> 
>  * In addition to fixes to topics in flight, I found these in the
>    codebase dating as far back as 2.27 days.

Thanks for catching these items. LGTM.

-Stolee
diff mbox series

Patch

diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c
index ea3d0f01af..6a66687e28 100644
--- a/builtin/receive-pack.c
+++ b/builtin/receive-pack.c
@@ -1837,11 +1837,9 @@  static void prepare_shallow_update(struct shallow_info *si)
 	ALLOC_ARRAY(si->used_shallow, si->shallow->nr);
 	assign_shallow_commits_to_refs(si, si->used_shallow, NULL);
 
-	si->need_reachability_test =
-		xcalloc(si->shallow->nr, sizeof(*si->need_reachability_test));
-	si->reachable =
-		xcalloc(si->shallow->nr, sizeof(*si->reachable));
-	si->shallow_ref = xcalloc(si->ref->nr, sizeof(*si->shallow_ref));
+	CALLOC_ARRAY(si->need_reachability_test, si->shallow->nr);
+	CALLOC_ARRAY(si->reachable, si->shallow->nr);
+	CALLOC_ARRAY(si->shallow_ref, si->ref->nr);
 
 	for (i = 0; i < si->nr_ours; i++)
 		si->need_reachability_test[si->ours[i]] = 1;
diff --git a/t/helper/test-bloom.c b/t/helper/test-bloom.c
index f0aa80b98e..eb7c011ca6 100644
--- a/t/helper/test-bloom.c
+++ b/t/helper/test-bloom.c
@@ -65,7 +65,7 @@  int cmd__bloom(int argc, const char **argv)
 		struct bloom_filter filter;
 		int i = 2;
 		filter.len =  (settings.bits_per_entry + BITS_PER_WORD - 1) / BITS_PER_WORD;
-		filter.data = xcalloc(filter.len, sizeof(unsigned char));
+		CALLOC_ARRAY(filter.data, filter.len);
 
 		if (argc - 1 < i)
 			usage(bloom_usage);