]> git.ipfire.org Git - thirdparty/git.git/commitdiff
commit: add commit_stack_init()
authorRené Scharfe <l.s.r@web.de>
Wed, 24 Dec 2025 17:03:22 +0000 (18:03 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 24 Dec 2025 23:29:28 +0000 (08:29 +0900)
Add a function for initializing a struct commit_stack, for when static
initialization is not possible or impractical.

Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
commit.c
commit.h

index f2edafa49cf09e823513673a1e3f4bdc784339a8..55b1c8d2f8d21d69ff06e766c01ab379f33c0cf4 100644 (file)
--- a/commit.c
+++ b/commit.c
@@ -1982,6 +1982,12 @@ int run_commit_hook(int editor_is_used, const char *index_file,
        return run_hooks_opt(the_repository, name, &opt);
 }
 
+void commit_stack_init(struct commit_stack *stack)
+{
+       stack->items = NULL;
+       stack->nr = stack->alloc = 0;
+}
+
 void commit_stack_push(struct commit_stack *stack, struct commit *commit)
 {
        ALLOC_GROW(stack->items, stack->nr + 1, stack->alloc);
@@ -1995,6 +2001,6 @@ struct commit *commit_stack_pop(struct commit_stack *stack)
 
 void commit_stack_clear(struct commit_stack *stack)
 {
-       FREE_AND_NULL(stack->items);
-       stack->nr = stack->alloc = 0;
+       free(stack->items);
+       commit_stack_init(stack);
 }
index 81e047f820acb45837c5f3613b083255b24b9371..7c01a76425f035f9cc3552aae071b61e314180b5 100644 (file)
--- a/commit.h
+++ b/commit.h
@@ -387,6 +387,7 @@ struct commit_stack {
 };
 #define COMMIT_STACK_INIT { 0 }
 
+void commit_stack_init(struct commit_stack *);
 void commit_stack_push(struct commit_stack *, struct commit *);
 struct commit *commit_stack_pop(struct commit_stack *);
 void commit_stack_clear(struct commit_stack *);