зеркало из https://github.com/github/ruby.git
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:
Родитель
37fb998384
Коммит
b203f67344
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче