From 54726befc3eb52bf06640bfb07664dace3721d14 Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 30 Oct 2018 03:21:56 +0000 Subject: use RARRAY_AREF() instead of RARRAY_CONST_PTR(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index cb05c2c40f..0b8446ac96 100644 --- a/thread.c +++ b/thread.c @@ -3091,9 +3091,9 @@ rb_thread_to_s(VALUE thread) if (!target_th->first_func && target_th->first_proc) { VALUE loc = rb_proc_location(target_th->first_proc); if (!NIL_P(loc)) { - const VALUE *ptr = RARRAY_CONST_PTR(loc); - rb_str_catf(str, "@%"PRIsVALUE":%"PRIsVALUE, ptr[0], ptr[1]); - rb_gc_force_recycle(loc); + rb_str_catf(str, "@%"PRIsVALUE":%"PRIsVALUE, + RARRAY_AREF(loc, 0), RARRAY_AREF(loc, 1)); + rb_gc_force_recycle(loc); } } rb_str_catf(str, " %s>", status); -- cgit v1.2.3