From a0fefdaf374c7e7b0bbf58482b86bac03d673a7c Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Fri, 14 Apr 2017 17:13:38 -0600 Subject: [PATCH] avfilter: fix handling of bad settings After encountering a bad setting, it was removing all filters starting with the one with bad settings. --- libhb/avfilter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libhb/avfilter.c b/libhb/avfilter.c index cd78cb8c0..cc39a1a15 100644 --- a/libhb/avfilter.c +++ b/libhb/avfilter.c @@ -774,6 +774,7 @@ void hb_avfilter_combine( hb_list_t * list ) { hb_list_rem(list, filter); hb_filter_close(&filter); + hb_value_free(&settings); continue; } if (avfilter == NULL) -- 2.40.0