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

git pushed a commit to branch master
in repository efl.

View the commit online.

commit d420b2bbe0128cc890fa4c06288407e43e9e084e
Author: Carsten Haitzler <[email protected]>
AuthorDate: Thu Aug 28 10:10:00 2025 +0100

    elm - config - palette - fix deletion to stop walking once found
    
    fixes walk beyond found element which can result in a crash
    
    @fix
---
 src/lib/elementary/elm_config.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/lib/elementary/elm_config.c b/src/lib/elementary/elm_config.c
index 1829fb78a7..c3f083f135 100644
--- a/src/lib/elementary/elm_config.c
+++ b/src/lib/elementary/elm_config.c
@@ -988,6 +988,7 @@ _palette_unset(Elm_Palette *pal, const char *clas)
              pal->colors = eina_list_remove_list(pal->colors, l);
              if (c->name) eina_stringshare_del(c->name);
              free(c);
+             return;
           }
      }
 }

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

Reply via email to