summaryrefslogtreecommitdiff
path: root/parse-options.c
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2023-01-01 21:16:48 (GMT)
committerJunio C Hamano <gitster@pobox.com>2023-01-09 04:28:36 (GMT)
commit6e578410960d9ceb35ec98ad4b6fc711f1a9c85c (patch)
treeeda5b7fabcc2394e6b9b3f021d8e03a0833273fe /parse-options.c
parentd2ec87a684e2f9cd1f0c653620a00d74ad5ee2ce (diff)
downloadgit-6e578410960d9ceb35ec98ad4b6fc711f1a9c85c.zip
git-6e578410960d9ceb35ec98ad4b6fc711f1a9c85c.tar.gz
git-6e578410960d9ceb35ec98ad4b6fc711f1a9c85c.tar.bz2
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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/parse-options.c b/parse-options.c
index a1ec932..fd47432 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));