* proc.c (rb_block_arity): should not call GetProcPtr() for symbols.

[ruby-core:72205] [Bug #11830]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53170 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2015-12-17 07:16:14 +00:00
Родитель 61c19c9d43
Коммит 94b3c4121b
3 изменённых файлов: 21 добавлений и 4 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Thu Dec 17 16:13:10 2015 Shugo Maeda <shugo@ruby-lang.org>
* proc.c (rb_block_arity): should not call GetProcPtr() for symbols.
[ruby-core:72205] [Bug #11830]
Thu Dec 17 14:16:29 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* string.c (rb_str_scrub): the result should be infected by the

13
proc.c
Просмотреть файл

@ -956,10 +956,15 @@ rb_block_arity(void)
min = rb_block_min_max_arity(block, &max);
proc_value = block->proc;
if (proc_value) {
rb_proc_t *proc;
GetProcPtr(proc_value, proc);
if (proc)
return (proc->is_lambda ? min == max : max != UNLIMITED_ARGUMENTS) ? min : -min-1;
if (SYMBOL_P(proc_value)) {
return -1;
}
else {
rb_proc_t *proc;
GetProcPtr(proc_value, proc);
if (proc)
return (proc->is_lambda ? min == max : max != UNLIMITED_ARGUMENTS) ? min : -min-1;
}
}
return max != UNLIMITED_ARGUMENTS ? min : -min-1;
}

Просмотреть файл

@ -157,6 +157,13 @@ class TestSymbol < Test::Unit::TestCase
assert_equal(1, first, bug11594)
end
def test_to_proc_for_hash_each
bug11830 = '[ruby-core:72205] [Bug #11830]'
assert_normal_exit(<<-'end;', bug11830) # do
{}.each(&:destroy)
end;
end
def test_call
o = Object.new
def o.foo(x, y); x + y; end