rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=6e9d60ed5bd476b576f31fca5b96fc4e8a80e058
commit 6e9d60ed5bd476b576f31fca5b96fc4e8a80e058 Author: Andrii Kroitor <[email protected]> Date: Thu Jan 14 18:06:49 2016 +0200 property_group: fix double-free --- src/bin/ui/property_group.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/ui/property_group.c b/src/bin/ui/property_group.c index b74d758..c07e70a 100644 --- a/src/bin/ui/property_group.c +++ b/src/bin/ui/property_group.c @@ -1038,7 +1038,7 @@ TODO("Implement rename. Note: groups list must remain sorted") * * Second: we need to get the different names for layouts and for styles. */ #define edje_edit_group_name_get(OBJ) \ - pd->group->name + eina_stringshare_add(pd->group->name) #define GROUP_ATTR_1ENTRY(TEXT, SUB, VALUE, MEMBER, VALIDATOR, TOOLTIP) \ GROUP_ATTR_1ENTRY_UPDATE(SUB, VALUE, MEMBER) \ --
