From ea258b3616e5a7038fa1a158287b21db84f365c4 Mon Sep 17 00:00:00 2001 From: yugui Date: Sun, 12 Apr 2009 14:03:33 +0000 Subject: merges r22901 from trunk into ruby_1_9_1. -- * iseq.c (rb_iseq_disasm): RSTRING_LEN() returns long. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@23184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- iseq.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'iseq.c') diff --git a/iseq.c b/iseq.c index 146d52e304..69cdd7fe1d 100644 --- a/iseq.c +++ b/iseq.c @@ -851,6 +851,7 @@ rb_iseq_disasm(VALUE self) VALUE child = rb_ary_new(); unsigned long size; int i; + long l; ID *tbl; enum {header_minlen = 72}; @@ -862,9 +863,9 @@ rb_iseq_disasm(VALUE self) rb_str_cat2(str, "== disasm: "); rb_str_concat(str, iseq_inspect(iseqdat->self)); - if ((i = RSTRING_LEN(str)) < header_minlen) { + if ((l = RSTRING_LEN(str)) < header_minlen) { rb_str_resize(str, header_minlen); - memset(RSTRING_PTR(str) + i, '=', header_minlen - i); + memset(RSTRING_PTR(str) + l, '=', header_minlen - l); } rb_str_cat2(str, "\n"); -- cgit v1.2.3