From: Chinmaya Panigrahi Date: Fri, 12 Sep 2014 21:07:18 +0000 (+0200) Subject: edje: prevent resource leak. X-Git-Tag: v1.12.0-alpha1~324 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f6eb1f17a1b34b2f2fb49feb09bb03a8263be56f;p=platform%2Fupstream%2Fefl.git edje: prevent resource leak. Summary: The pointer used is not freed at the end of the function which results resource leak. @fix Test Plan: Not Available Reviewers: seoz, raster, cedric Reviewed By: cedric Subscribers: raster, seoz, cedric Differential Revision: https://phab.enlightenment.org/D1438 Signed-off-by: Cedric BAIL --- diff --git a/src/bin/edje/epp/cpplib.c b/src/bin/edje/epp/cpplib.c index 5f2fc21..77da3ac 100644 --- a/src/bin/edje/epp/cpplib.c +++ b/src/bin/edje/epp/cpplib.c @@ -3525,6 +3525,8 @@ do_include(cpp_reader * pfile, struct directive *keyword, if (angle_brackets) pfile->system_include_depth--; } + if (fname) + free(fname); return 0; }