summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 02:48:46 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 02:48:46 +0000
commit77443b2882081392f63bffa2be0f65aac21c2a8d (patch)
tree19d55ce33ea8fff81307a2e0c2722b021e13f207 /string.c
parent4f3f77b9f23ef288640d8faa5edb870a55b28937 (diff)
merge revision(s) 45534: [Backport #9709]
* string.c (str_buf_cat): should round up the capacity by 4KiB, but not number of rooms. [ruby-core:61886] [Bug #9709] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@46154 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string.c b/string.c
index 3c61c6a459..357de5aacc 100644
--- a/string.c
+++ b/string.c
@@ -1925,7 +1925,7 @@ str_buf_cat(VALUE str, const char *ptr, long len)
if (capa <= total) {
while (total > capa) {
if (capa + 1 >= LONG_MAX / 2) {
- capa = (total + 4095) / 4096;
+ capa = (total + 4095) / 4096 * 4096;
break;
}
capa = (capa + 1) * 2;