From 34761b7f965ec7f2cab4179caa672b32a450dc79 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 12 May 2017 17:23:46 +0000 Subject: array.c: fix position in message * array.c (rb_ary_insert): fix the position in error message, when it is less than -1. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58694 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- array.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'array.c') diff --git a/array.c b/array.c index 1eb1d2ea35..cff6d69ad3 100644 --- a/array.c +++ b/array.c @@ -1786,7 +1786,12 @@ rb_ary_insert(int argc, VALUE *argv, VALUE ary) if (pos == -1) { pos = RARRAY_LEN(ary); } - if (pos < 0) { + else if (pos < 0) { + long minpos = -RARRAY_LEN(ary) - 1; + if (pos < minpos) { + rb_raise(rb_eIndexError, "index %ld too small for array; minimum: %ld", + pos, minpos); + } pos++; } rb_ary_splice(ary, pos, 0, argv + 1, argc - 1); -- cgit v1.2.3