raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=4ebb7c155aaeadd55ff143bce59cf1fa28c0a9e1
commit 4ebb7c155aaeadd55ff143bce59cf1fa28c0a9e1 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Thu Mar 4 09:16:01 2021 +0000 music-control - null out dead timer so it isnt accidentally deled deleting invalid timer object... because it is invalid because we never nulled out the timer when it runs. --- src/modules/music-control/e_mod_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/music-control/e_mod_main.c b/src/modules/music-control/e_mod_main.c index ca6e71b5a..622c25022 100644 --- a/src/modules/music-control/e_mod_main.c +++ b/src/modules/music-control/e_mod_main.c @@ -417,6 +417,7 @@ static Eina_Bool _poll_dbus_cb(void *data) { E_Music_Control_Module_Context *ctxt = data; + ctxt->poll_timer = NULL; _bus_list(ctxt); return EINA_FALSE; } --
