This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository enlightenment.

View the commit online.

commit 7d8a95ddb981de18831f6e09c8521e70184986b0
Author: Carsten Haitzler <[email protected]>
AuthorDate: Sat Jun 20 10:16:08 2026 +0100

    video + graph - forgot to free smart data on del
    
    @fix leak
---
 src/bin/e_graph.c | 1 +
 src/bin/e_video.c | 1 +
 2 files changed, 2 insertions(+)

diff --git a/src/bin/e_graph.c b/src/bin/e_graph.c
index 26a0149d7..d4a642d2f 100644
--- a/src/bin/e_graph.c
+++ b/src/bin/e_graph.c
@@ -105,6 +105,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/bin/e_video.c b/src/bin/e_video.c
index 0be82358d..1705f2919 100644
--- a/src/bin/e_video.c
+++ b/src/bin/e_video.c
@@ -253,6 +253,7 @@ _smart_del(Evas_Object *obj)
    vidimg_release(sd->o_vid);
 
    _parent_sc.del(obj);
+   free(sd);
 }
 
 static void

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to