* 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
This commit is contained in:
ko1 2013-08-07 04:20:56 +00:00
Родитель 7a23eb1c41
Коммит 8741a39777
2 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Wed Aug 7 13:20:12 2013 Koichi Sasada <ko1@atdot.net>
* 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 <ko1@atdot.net>
* 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];