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

git pushed a commit to branch master
in repository terminology.

View the commit online.

commit 909eac8657bd943c88bdd456aa9e2f3cba38f01b
Author: Boris Faure <bill...@gmail.com>
AuthorDate: Mon Aug 22 22:53:00 2022 +0200

    colorschemes: del the pointer that is by construction a stringshare
---
 src/bin/colors.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/colors.c b/src/bin/colors.c
index b2006e7..e889562 100644
--- a/src/bin/colors.c
+++ b/src/bin/colors.c
@@ -797,7 +797,7 @@ color_scheme_list(void)
                                  {
                                     WRN("Skipping loading '%s' from '%s' color scheme exists already",
                                        entry->name, buf);
-                                    eina_stringshare_del(entry->name);
+                                    eina_stringshare_del(current_name);
                                     continue;
                                  }
                               cs = eet_data_read(ef, edd_cs, entry->name);
@@ -805,7 +805,7 @@ color_scheme_list(void)
                                 {
                                    ERR("failed to load color scheme '%s' from '%s'",
                                        entry->name, buf);
-                                   eina_stringshare_del(entry->name);
+                                   eina_stringshare_del(current_name);
                                    continue;
                                 }
                               l = eina_list_sorted_insert(l, color_scheme_cmp, cs);

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

Reply via email to