aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-21 07:38:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-21 07:38:16 +0000
commit3a6bb56029c3890d39577b96179a9f869e7cef84 (patch)
treecfb7d1981564e332457f9e187f07794e2a37c798 /ChangeLog
parent82727299777de8f218d3d8c258650d6c7d4098a4 (diff)
downloadruby-3a6bb56029c3890d39577b96179a9f869e7cef84.tar.gz
Fix garbage allocation
* string.c (rb_str_casemap): do not put code with side effects inside RSTRING_PTR() macro which evaluates the argument multiple times. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55481 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 28a684539a..471bf84e16 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Jun 21 16:38:14 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * string.c (rb_str_casemap): do not put code with side effects
+ inside RSTRING_PTR() macro which evaluates the argument multiple
+ times.
+
Tue Jun 21 16:13:45 2016 NARUSE, Yui <naruse@ruby-lang.org>
* string.c (rb_str_casemap): fix memory leak.