This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch v-0.27
in repository enlightenment.
View the commit online.
commit 96ff684249bfa55ef4d68923d40dd02359de10f2
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Wed Mar 12 19:16:44 2025 +0000
efm - fix lack of deletion of file monitor
fixes #106
@fix
---
src/bin/e_fm/e_fm_ipc.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/bin/e_fm/e_fm_ipc.c b/src/bin/e_fm/e_fm_ipc.c
index 6d5db7c31..ae02b3798 100644
--- a/src/bin/e_fm/e_fm_ipc.c
+++ b/src/bin/e_fm/e_fm_ipc.c
@@ -1306,6 +1306,11 @@ _e_fm_ipc_dir_del(E_Dir *ed)
ecore_thread_cancel(ed->lister_thread);
return;
}
+ if (ed->mon)
+ {
+ ecore_file_monitor_del(ed->mon);
+ ed->mon = NULL;
+ }
eina_stringshare_del(ed->dir);
if (ed->recent_clean) ecore_timer_del(ed->recent_clean);
EINA_LIST_FREE(ed->recent_mods, m)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.