filter_combine__init() allocates a struct combine_filter_data object and assigns it to the filter_data member of struct filter_options. Release it in the complementing filter_combine__free(). Reported-by: Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> Signed-off-by: René Scharfe <l.s.r@xxxxxx> --- Reported in https://lore.kernel.org/git/221112.86bkpcmm6i.gmgdl@xxxxxxxxxxxxxxxxxxx/ list-objects-filter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/list-objects-filter.c b/list-objects-filter.c index 1c1ee3d1bb..b9543545ca 100644 --- a/list-objects-filter.c +++ b/list-objects-filter.c @@ -709,6 +709,7 @@ static void filter_combine__free(void *filter_data) BUG("expected oidset to be cleared already"); } free(d->sub); + free(d); } static void add_all(struct oidset *dest, struct oidset *src) { -- 2.38.1