зеркало из https://github.com/github/ruby.git
string.c: fix integer overflow
* string.c (rb_str_change_terminator_length): fix integer overflow in the case growing the terminator length and the string length is around LONG_MAX. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56149 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
be3baa4380
Коммит
8a64787632
3
string.c
3
string.c
|
@ -2054,7 +2054,8 @@ rb_str_change_terminator_length(VALUE str, const int oldtermlen, const int terml
|
|||
long capa = str_capacity(str, oldtermlen);
|
||||
long len = RSTRING_LEN(str);
|
||||
|
||||
if (capa < len + termlen - oldtermlen) {
|
||||
assert(capa >= len);
|
||||
if (capa - len < termlen - oldtermlen) {
|
||||
rb_check_lockedtmp(str);
|
||||
str_make_independent_expand(str, len, 0L, termlen);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче