From 3187f952781ca6e3fe10d61e89a49941ec4378da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amadeusz=20S=C5=82awi=C5=84ski?= Date: Tue, 13 May 2014 23:41:29 +0200 Subject: [PATCH] wrlib: Potential leak of memory pointed to by 'tmpp' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Amadeusz Sławiński --- wrlib/convolve.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wrlib/convolve.c b/wrlib/convolve.c index 57072f05..a152e267 100644 --- a/wrlib/convolve.c +++ b/wrlib/convolve.c @@ -135,6 +135,8 @@ int RBlurImage(RImage * image) } } + free(tmpp); + return True; }