This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efm2.
View the commit online.
commit bb6739dc0ed7d0529246b979079c62b34e939ab6
Author: Carsten Haitzler (Rasterman) <[email protected]>
AuthorDate: Sat Jun 20 10:16:37 2026 +0100
fix smart dels to free
---
src/efm/efm.c | 1 +
src/efm/efm_graph.c | 1 +
src/efm/efm_icon.c | 1 +
3 files changed, 3 insertions(+)
diff --git a/src/efm/efm.c b/src/efm/efm.c
index e96d6c9..5b5cdc4 100644
--- a/src/efm/efm.c
+++ b/src/efm/efm.c
@@ -770,6 +770,7 @@ _smart_del(Evas_Object *obj)
_sc_parent.del(obj);
evas_object_smart_data_set(obj, NULL);
+ free(sd);
}
static void
diff --git a/src/efm/efm_graph.c b/src/efm/efm_graph.c
index 84dbe04..727f4b7 100644
--- a/src/efm/efm_graph.c
+++ b/src/efm/efm_graph.c
@@ -103,6 +103,7 @@ _smart_del(Evas_Object *obj)
_sc_parent.del(obj);
evas_object_smart_data_set(obj, NULL);
+ free(sd);
}
static void
diff --git a/src/efm/efm_icon.c b/src/efm/efm_icon.c
index 23e081b..0530ee4 100644
--- a/src/efm/efm_icon.c
+++ b/src/efm/efm_icon.c
@@ -573,6 +573,7 @@ _smart_del(Evas_Object *obj)
_sc_parent.del(obj);
evas_object_smart_data_set(obj, NULL);
+ free(sd);
}
static void
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.