]> git.ipfire.org Git - thirdparty/git.git/commitdiff
tree-diff: fix leak when not HAVE_ALLOCA_H
authorCarlo Marcelo Arenas Belón <carenas@gmail.com>
Thu, 16 Sep 2021 08:55:22 +0000 (01:55 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 16 Sep 2021 20:43:42 +0000 (13:43 -0700)
b8ba412bf7 (tree-diff: avoid alloca for large allocations, 2016-06-07)
adds a way to route some bigger allocations out of the stack and free
them through the addition of two conveniently named macros, but leaves
the calls to free the xalloca part, which could be also in the heap,
if the system doesn't HAVE_ALLOCA_H (ex: macOS and other BSD).

Add the missing free call, xalloca_free(), which is a noop if we
allocated memory in the stack frame, but a real free() if we
allocated in the heap instead, and while at it, change the expression
to match in both macros for ease of readability.

This avoids a leak reported by LSAN while running t0000 but that
wouldn't fail the test (which is fixed in the next patch):

  SUMMARY: LeakSanitizer: 1034 byte(s) leaked in 15 allocation(s).

Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
tree-diff.c

index 1572615bd9a7eeac84aef5a41f0e2443cae6417a..437c98a70e47ebc89d258e281f16207b9dfa990d 100644 (file)
@@ -21,7 +21,9 @@
                ALLOC_ARRAY((x), nr); \
 } while(0)
 #define FAST_ARRAY_FREE(x, nr) do { \
-       if ((nr) > 2) \
+       if ((nr) <= 2) \
+               xalloca_free((x)); \
+       else \
                free((x)); \
 } while(0)