diff options
author | René Scharfe <l.s.r@web.de> | 2023-01-01 22:16:48 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-01-09 13:28:36 +0900 |
commit | 6e578410960d9ceb35ec98ad4b6fc711f1a9c85c (patch) | |
tree | eda5b7fabcc2394e6b9b3f021d8e03a0833273fe /parse-options.c | |
parent | d2ec87a684e2f9cd1f0c653620a00d74ad5ee2ce (diff) | |
download | git-6e578410960d9ceb35ec98ad4b6fc711f1a9c85c.tar.gz |
use DUP_ARRAY
Add a semantic patch for replace ALLOC_ARRAY+COPY_ARRAY with DUP_ARRAY
to reduce code duplication and apply its results.
Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'parse-options.c')
-rw-r--r-- | parse-options.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/parse-options.c b/parse-options.c index a1ec932f0f..fd4743293f 100644 --- a/parse-options.c +++ b/parse-options.c @@ -702,8 +702,7 @@ static struct option *preprocess_options(struct parse_opt_ctx_t *ctx, if (!nr_aliases) return NULL; - ALLOC_ARRAY(newopt, nr + 1); - COPY_ARRAY(newopt, options, nr + 1); + DUP_ARRAY(newopt, options, nr + 1); /* each alias has two string pointers and NULL */ CALLOC_ARRAY(ctx->alias_groups, 3 * (nr_aliases + 1)); |