summaryrefslogtreecommitdiff
path: root/proc.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-28 07:20:40 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-28 07:20:40 +0000
commit7149859bc35cfe7497a1e98118f22a1628e8703d (patch)
tree4b27d0d86783576fe99e59c394e717e54628610b /proc.c
parent3412d1016a4a166d7e7bf32e56bcde5cc25f19ae (diff)
merge revision(s) 48160: [Backport #10432]
* proc.c (method_proc): the receiver of binding from method should be same as the receiver of the method. [ruby-core:65917] [Bug #10432] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@48633 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/proc.c b/proc.c
index d8f0b28e1a..8d18e2c3db 100644
--- a/proc.c
+++ b/proc.c
@@ -2034,7 +2034,10 @@ static VALUE
method_proc(VALUE method)
{
VALUE procval;
+ struct METHOD *meth;
rb_proc_t *proc;
+ rb_env_t *env;
+
/*
* class Method
* def to_proc
@@ -2044,9 +2047,16 @@ method_proc(VALUE method)
* end
* end
*/
+ TypedData_Get_Struct(method, struct METHOD, &method_data_type, meth);
procval = rb_iterate(mlambda, 0, bmcall, method);
GetProcPtr(procval, proc);
proc->is_from_method = 1;
+ proc->block.self = meth->recv;
+ proc->block.klass = meth->defined_class;
+ GetEnvPtr(proc->envval, env);
+ env->block.self = meth->recv;
+ env->block.klass = meth->defined_class;
+ env->block.iseq = method_get_iseq(meth->me->def);
return procval;
}