From d2f8d07894ff3ab763ea300f7ec5c26e1fc68c6b Mon Sep 17 00:00:00 2001 From: Tony Cook Date: Tue, 23 Feb 2016 21:57:21 +1100 Subject: [PATCH] combine() - was leaking malloc()ed row buffers --- combine.im | 2 ++ 1 file changed, 2 insertions(+) diff --git a/combine.im b/combine.im index 37e174d3..b13a9410 100644 --- a/combine.im +++ b/combine.im @@ -75,6 +75,8 @@ i_combine(i_img **imgs, const int *channels, int in_count) { } IM_PLIN(out, 0, width, y, out_row); } + myfree(out_row); + myfree(in_row); #/code return out; -- 2.39.5