From c813697d97832ffe4d660ab9bf0e5c3519448071 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 20 Mar 2014 04:06:27 +0000 Subject: * struct.c (rb_struct_alloc): use RARRAY_CONST_PTR() instead of RARRAY_PTR(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45369 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- struct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'struct.c') diff --git a/struct.c b/struct.c index c3dba62962..7da60dbad0 100644 --- a/struct.c +++ b/struct.c @@ -480,7 +480,7 @@ struct_alloc(VALUE klass) VALUE rb_struct_alloc(VALUE klass, VALUE values) { - return rb_class_new_instance(RARRAY_LENINT(values), RARRAY_PTR(values), klass); + return rb_class_new_instance(RARRAY_LENINT(values), RARRAY_CONST_PTR(values), klass); } VALUE -- cgit v1.2.3