rimmed pushed a commit to branch eflete-1.18. http://git.enlightenment.org/tools/eflete.git/commit/?id=b7ff3d3d8e051e762946582cd34d91ad0a422807
commit b7ff3d3d8e051e762946582cd34d91ad0a422807 Author: Andrii Kroitor <an.kroi...@samsung.com> Date: Thu Sep 15 15:14:22 2016 +0300 project_common: fix memory leak Fix svace WID 436687 --- src/bin/ui/project_common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/ui/project_common.c b/src/bin/ui/project_common.c index 1a8933f..af64cc2 100644 --- a/src/bin/ui/project_common.c +++ b/src/bin/ui/project_common.c @@ -83,6 +83,7 @@ exist_permission_check(const char *path, const char *name, eina_strbuf_append_printf(buf_msg, _("Haven't permision to write '%s'"), path); popup_add(title, eina_strbuf_string_get(buf_msg), BTN_OK, NULL, NULL); eina_strbuf_free(buf_msg); + free(pcd); return false; } pcd->buf = eina_strbuf_new(); --