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 | |
parent | 7a23eb1c41414a081662a5f89f35fadb59402759 (diff) |
* 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
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | random.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Wed Aug 7 13:20:12 2013 Koichi Sasada <[email protected]> + + * random.c (random_load): use RARRAY_RAWPTR() instead of + RARRAY_PTR() because there is no new reference. + Wed Aug 7 12:58:23 2013 Koichi Sasada <[email protected]> * thread.c (thread_start_func_2): use RARRAY_RAWPTR() instead of @@ -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]; |