From: Steve Murphy Date: Mon, 2 Apr 2007 17:38:12 +0000 (+0000) Subject: Merged revisions 59688 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~2924 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f120c26ec17c1a2fe29fe0a7e4f1a1dbe050877b;p=thirdparty%2Fasterisk.git Merged revisions 59688 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r59688 | murf | 2007-04-02 11:31:32 -0600 (Mon, 02 Apr 2007) | 1 line continue in for-loop should go to the incrementer, not the test. As per 9435, thanks to marcelbarbulescu ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@59692 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/pbx/pbx_ael.c b/pbx/pbx_ael.c index 0a43ff0cf3..f62e95d93c 100644 --- a/pbx/pbx_ael.c +++ b/pbx/pbx_ael.c @@ -3135,7 +3135,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 */