зеркало из https://github.com/github/ruby.git
eval.c: set nil if nothing done
* eval.c (ruby_eval_main_internal): set nil to the result if nothing executed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36082 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
073297789a
Коммит
207c58b518
5
eval.c
5
eval.c
|
@ -273,7 +273,10 @@ ruby_eval_main_internal(VALUE iseqval, VALUE* result)
|
|||
volatile VALUE retval;
|
||||
rb_thread_t *th = GET_THREAD();
|
||||
|
||||
if (!iseqval) return 0;
|
||||
if (!iseqval) {
|
||||
*result = Qnil;
|
||||
return 0;
|
||||
}
|
||||
|
||||
PUSH_TAG();
|
||||
if ((state = EXEC_TAG()) == 0) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче