vm_backtrace.c: copy without creating prefix string

* vm_backtrace.c (rb_profile_frame_full_label): copy from label
  directly, without creating prefix string.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43207 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-10-09 04:27:39 +00:00
Родитель 37fb998384
Коммит b203f67344
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1357,8 +1357,8 @@ rb_profile_frame_full_label(VALUE frame)
else {
long label_length = RSTRING_LEN(label);
long base_label_length = RSTRING_LEN(base_label);
VALUE prefix = rb_str_new(RSTRING_PTR(label), label_length - base_label_length);
int prefix_len = rb_long2int(label_length - base_label_length);
return rb_sprintf("%"PRIsVALUE"%"PRIsVALUE, prefix, qualified_method_name);
return rb_sprintf("%.*s%"PRIsVALUE, prefix_len, RSTRING_PTR(label), qualified_method_name);
}
}