mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm.c (invoke_block_from_c): fix unintentional block passing.
[ruby-dev:45071] [Bug #5832] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
00468f2109
commit
9564e9bd23
5 changed files with 41 additions and 1 deletions
14
ext/-test-/bug-5832/bug.c
Normal file
14
ext/-test-/bug-5832/bug.c
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include <ruby.h>
|
||||
|
||||
static VALUE
|
||||
bug_funcall_callback(VALUE self, VALUE obj)
|
||||
{
|
||||
return rb_funcall(obj, rb_intern("callback"), 0);
|
||||
}
|
||||
|
||||
void
|
||||
Init_bug(void)
|
||||
{
|
||||
VALUE mBug = rb_define_module("Bug");
|
||||
rb_define_module_function(mBug, "funcall_callback", bug_funcall_callback, 1);
|
||||
}
|
1
ext/-test-/bug-5832/extconf.rb
Normal file
1
ext/-test-/bug-5832/extconf.rb
Normal file
|
@ -0,0 +1 @@
|
|||
create_makefile("-test-/bug-5832/bug")
|
Loading…
Add table
Add a link
Reference in a new issue