aboutsummaryrefslogtreecommitdiffstats
path: root/cont.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-07 07:19:57 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-07 07:19:57 +0000
commit382abb7526eda9dd50c004f654b542297c77fac1 (patch)
tree5675d7c28af80f3af77afa2919cf7336f3e3b627 /cont.c
parent8741a39777e76c31f0bdc7b3dcc4ecb03a4c1784 (diff)
downloadruby-382abb7526eda9dd50c004f654b542297c77fac1.tar.gz
* cont.c (rb_fiber_start): use RARRAY_RAWPTR() instead of
RARRAY_PTR() because there is no new reference. * proc.c (curry): ditto. * proc.c (rb_proc_call): remove line break. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42420 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'cont.c')
-rw-r--r--cont.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/cont.c b/cont.c
index 61726f12c2..983271d5eb 100644
--- a/cont.c
+++ b/cont.c
@@ -1149,10 +1149,9 @@ rb_fiber_start(void)
TH_PUSH_TAG(th);
if ((state = EXEC_TAG()) == 0) {
int argc;
- VALUE *argv, args;
+ const VALUE *argv, args = cont->value;
GetProcPtr(cont->saved_thread.first_proc, proc);
- args = cont->value;
- argv = (argc = cont->argc) > 1 ? RARRAY_PTR(args) : &args;
+ argv = (argc = cont->argc) > 1 ? RARRAY_RAWPTR(args) : &args;
cont->value = Qnil;
th->errinfo = Qnil;
th->root_lep = rb_vm_ep_local_ep(proc->block.ep);