discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=499020ce4d59dc4f582bf0bac0f310b9ca0512fa

commit 499020ce4d59dc4f582bf0bac0f310b9ca0512fa
Author: Mike Blumenkrantz <[email protected]>
Date:   Fri Mar 21 20:45:00 2014 -0400

    edje_cc no longer reads every character of a script during parsing
---
 src/bin/edje/edje_cc_handlers.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c
index ba8f7cf..58685f8 100644
--- a/src/bin/edje/edje_cc_handlers.c
+++ b/src/bin/edje/edje_cc_handlers.c
@@ -10027,7 +10027,7 @@ ob_collections_group_programs_program_script(void)
              cd->is_lua = 0;
 
              len = strlen(cp->script);
-             for (i = 0; i < len; i++)
+             for (i = 0; empty && i < len; i++)
                {
                   if (((cp->script[i] > 'a') && (cp->script[i] < 'z')) ||
                       ((cp->script[i] > 'A') && (cp->script[i] < 'Z')) ||

-- 


Reply via email to