diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-01-08 14:05:16 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-01-08 14:05:16 -0800 |
| commit | 8a48cd484f591758141d82fac124a0dddb57f5af (patch) | |
| tree | 7d16b5df77c46501587def511ff709ad73cb94c5 | |
| parent | Merge branch 'en/sparse-checkout-eoo' (diff) | |
| parent | fast-import: use mem_pool_calloc() (diff) | |
| download | git-8a48cd484f591758141d82fac124a0dddb57f5af.tar.gz git-8a48cd484f591758141d82fac124a0dddb57f5af.zip | |
Merge branch 'rs/fast-import-simplify-mempool-allocation'
Code simplification.
* rs/fast-import-simplify-mempool-allocation:
fast-import: use mem_pool_calloc()
| -rw-r--r-- | builtin/fast-import.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/builtin/fast-import.c b/builtin/fast-import.c index 444f41cf8c..92eda20683 100644 --- a/builtin/fast-import.c +++ b/builtin/fast-import.c @@ -2809,8 +2809,7 @@ static void parse_new_tag(const char *arg) enum object_type type; const char *v; - t = mem_pool_alloc(&fi_mem_pool, sizeof(struct tag)); - memset(t, 0, sizeof(struct tag)); + t = mem_pool_calloc(&fi_mem_pool, 1, sizeof(struct tag)); t->name = mem_pool_strdup(&fi_mem_pool, arg); if (last_tag) last_tag->next_tag = t; |
