*fixed a crash bug when a do-until statement is the end of a program.
This commit is contained in:
parent
dd8deebda0
commit
d692211deb
3
HISTORY
3
HISTORY
@ -1,3 +1,6 @@
|
|||||||
|
Jan. 11 2016
|
||||||
|
Fixed a crash bug when a DO-UNTIL statement is the end of a program
|
||||||
|
|
||||||
Jan. 9 2016
|
Jan. 9 2016
|
||||||
Developing lambda, improved error handling
|
Developing lambda, improved error handling
|
||||||
Developing lambda, fixed an issue with only a PRINT statement
|
Developing lambda, fixed an issue with only a PRINT statement
|
||||||
|
@ -11444,6 +11444,7 @@ _loop_begin:
|
|||||||
|
|
||||||
if(loop_cond_ptr->data.integer) {
|
if(loop_cond_ptr->data.integer) {
|
||||||
/* End looping */
|
/* End looping */
|
||||||
|
if(ast)
|
||||||
_skip_to(s, &ast, 0, _DT_EOS);
|
_skip_to(s, &ast, 0, _DT_EOS);
|
||||||
|
|
||||||
goto _exit;
|
goto _exit;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user