diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-08-07 04:20:56 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-08-07 04:20:56 +0000 |
commit | 8741a39777e76c31f0bdc7b3dcc4ecb03a4c1784 (patch) | |
tree | 8fc6913a4d4159c06b5bf2859c115fdc8eb1c631 /random.c | |
parent | 7a23eb1c41414a081662a5f89f35fadb59402759 (diff) | |
download | ruby-8741a39777e76c31f0bdc7b3dcc4ecb03a4c1784.tar.gz |
* random.c (random_load): use RARRAY_RAWPTR() instead of
RARRAY_PTR() because there is no new reference.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42419 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'random.c')
-rw-r--r-- | random.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -627,12 +627,12 @@ random_load(VALUE obj, VALUE dump) rb_random_t *rnd = get_rnd(obj); struct MT *mt = &rnd->mt; VALUE state, left = INT2FIX(1), seed = INT2FIX(0); - VALUE *ary; + const VALUE *ary; unsigned long x; rb_check_copyable(obj, dump); Check_Type(dump, T_ARRAY); - ary = RARRAY_PTR(dump); + ary = RARRAY_RAWPTR(dump); switch (RARRAY_LEN(dump)) { case 3: seed = ary[2]; |