cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=8ebf5d49b26bc7a9310a6319d280a6dd42d6dc07
commit 8ebf5d49b26bc7a9310a6319d280a6dd42d6dc07 Author: Amitesh Singh <[email protected]> Date: Mon Sep 22 14:52:10 2014 +0200 epp: fix memory leak. Reviewers: cedric, seoz Subscribers: cedric, seoz Differential Revision: https://phab.enlightenment.org/D1470 Signed-off-by: Cedric BAIL <[email protected]> --- src/bin/edje/epp/cpplib.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/edje/epp/cpplib.c b/src/bin/edje/epp/cpplib.c index 7c371cf..f4cbb1f 100644 --- a/src/bin/edje/epp/cpplib.c +++ b/src/bin/edje/epp/cpplib.c @@ -5941,6 +5941,7 @@ push_parse_file(cpp_reader * pfile, const char *fname) } } } + free(default_prefix); /* Search ordinary names for GNU include directories. */ for (di = include_defaults; di->fname; di++) { --
