*fixed a wrong error with the VAL statement.

This commit is contained in:
Wang Renxin 2018-05-09 15:30:07 +08:00
parent e164d3c428
commit fb6d76fe9a
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
May. 9 2018 May. 9 2018
Fixed a crash bug in invalid conditional expression with class member, thanks to AaBc for pointing it out Fixed a crash bug in invalid conditional expression with class member, thanks to AaBc for pointing it out
Fixed a wrong error with the VAL statement
Apr. 20 2018 Apr. 20 2018
Avoided a warning when a C++ compiler refers char to unsigned Avoided a warning when a C++ compiler refers char to unsigned

View File

@ -17789,9 +17789,9 @@ static int _std_val(mb_interpreter_t* s, void** l) {
} }
} }
_exit:
mb_check(mb_attempt_close_bracket(s, l)); mb_check(mb_attempt_close_bracket(s, l));
_exit:
return result; return result;
} }