*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
|
||||
Developing lambda, improved error handling
|
||||
Developing lambda, fixed an issue with only a PRINT statement
|
||||
|
@ -11444,7 +11444,8 @@ _loop_begin:
|
||||
|
||||
if(loop_cond_ptr->data.integer) {
|
||||
/* End looping */
|
||||
_skip_to(s, &ast, 0, _DT_EOS);
|
||||
if(ast)
|
||||
_skip_to(s, &ast, 0, _DT_EOS);
|
||||
|
||||
goto _exit;
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user