tasn pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=1198dd4efb4307599fd31a4479e6a18c61c13d6b

commit 1198dd4efb4307599fd31a4479e6a18c61c13d6b
Author: Tom Hacohen <t...@stosb.com>
Date:   Tue Aug 30 13:36:41 2016 +0100

    Edje cc: Rename and move around shadowing variable.
---
 src/bin/edje/edje_cc_handlers.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c
index 9bcfa4f..18697ee 100644
--- a/src/bin/edje/edje_cc_handlers.c
+++ b/src/bin/edje/edje_cc_handlers.c
@@ -4646,7 +4646,7 @@ st_collections_group_inherit(void)
 
    if (pc2->alias)
      {
-        char *key, *alias;
+        char *key;
 
         memset(&fdata, 0, sizeof(Edje_List_Foreach_Data));
         eina_hash_foreach(pc2->alias,
@@ -4654,8 +4654,9 @@ st_collections_group_inherit(void)
         if (!pc->alias) pc->alias = eina_hash_string_small_new(free);
         EINA_LIST_FREE(fdata.list, key)
           {
-             alias = eina_hash_find(pc2->alias, key);
-             eina_hash_direct_add(pc->alias, key, alias);
+             char *tmp;
+             tmp = eina_hash_find(pc2->alias, key);
+             eina_hash_direct_add(pc->alias, key, tmp);
           }
      }
    if (pc2->aliased)

-- 


Reply via email to