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 25339bc0ab8946b000f9aa6d1b7a7abb71e7f00a
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Tue Jul 16 09:22:31 2024 +0100

    personal apps - fix bug when removing item from list
    
    it kept walking the list which would then be invalid as it was
    modified while walking - it should have broken out at this point also
    as it found its target anyway
    
    @fix
---
 src/modules/conf_applications/e_int_config_apps_personal.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/modules/conf_applications/e_int_config_apps_personal.c b/src/modules/conf_applications/e_int_config_apps_personal.c
index e4b1d038e..ba65ceabf 100644
--- a/src/modules/conf_applications/e_int_config_apps_personal.c
+++ b/src/modules/conf_applications/e_int_config_apps_personal.c
@@ -208,6 +208,7 @@ _btn_cb_del(void *data, void *data2 EINA_UNUSED)
         if (!file) break;
         ecore_file_unlink(file);
         e_widget_ilist_remove_num(cfdata->obj.list, x);
+        break;
      }
    e_int_menus_cache_clear();
 }

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

Reply via email to