]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
continue in for-loop should go to the incrementer, not the test. As per 9435, thanks...
authorSteve Murphy <murf@digium.com>
Mon, 2 Apr 2007 17:31:32 +0000 (17:31 +0000)
committerSteve Murphy <murf@digium.com>
Mon, 2 Apr 2007 17:31:32 +0000 (17:31 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@59688 65c4cc65-6c06-0410-ace0-fbb531ad65f3

pbx/pbx_ael.c

index 52915188999ea348f481d3283f6976ac9d2c6726..8d9137ceeb3b06d7bece8e36485cca53df6b6115 100644 (file)
@@ -2993,7 +2993,7 @@ static void gen_prios(struct ael_extension *exten, char *label, pval *statement,
                        
                        /* now, put the body of the for loop here */
                        exten->loop_break = for_end;
-                       exten->loop_continue = for_test;
+                       exten->loop_continue = for_inc;
                        
                        gen_prios(exten, new_label, p->u4.for_statements, mother_exten, this_context); /* this will link in all the statements here */