englebass pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=7542ddef4c3f2cee75d115cf4e87ee3bbcc99509

commit 7542ddef4c3f2cee75d115cf4e87ee3bbcc99509
Author: Sebastian Dransfeld <s...@tango.flipp.net>
Date:   Sat Dec 7 21:37:39 2013 +0100

    break out of while, not return
    
    No change in functionality
    
    Fixes CID 1039946, 1039948 and 1039949
---
 src/bin/e_utils.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/e_utils.c b/src/bin/e_utils.c
index 77faa09..97ad44a 100644
--- a/src/bin/e_utils.c
+++ b/src/bin/e_utils.c
@@ -301,13 +301,13 @@ e_util_edje_icon_list_set(Evas_Object *obj, const char 
*list)
              buf[c - p] = 0;
              if (e_util_edje_icon_set(obj, buf)) return 1;
              p = c + 1;
-             if (!*p) return 0;
+             if (!*p) break;
           }
         else
           {
              strcpy(buf, p);
              if (e_util_edje_icon_set(obj, buf)) return 1;
-             return 0;
+             break;
           }
      }
    return 0;

-- 


Reply via email to