From: Steinar Midtskogen Date: Fri, 9 Sep 2016 15:36:22 +0000 (+0200) Subject: Fix a memleak in CLPF. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9351b2f792fa0eca6317947ab628c5353c4ba92d;p=libvpx Fix a memleak in CLPF. The memleak appeared in eb5794da1659f87597291d84c2fbdfd89280065d. Change-Id: Ifdd6d64aafa0d0ce4dfaf1844f594d5f843bf2e0 --- diff --git a/av1/common/clpf.c b/av1/common/clpf.c index 1ca60e056..f4dfa1fa3 100644 --- a/av1/common/clpf.c +++ b/av1/common/clpf.c @@ -168,6 +168,7 @@ int av1_clpf_frame(const YV12_BUFFER_CONFIG *orig_dst, aom_free(cache); aom_free(cache_ptr); + aom_free(cache_dst); } return block_index;