aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-06 06:26:01 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-06 06:26:01 +0000
commitcb410ff93206316d00355cb2c2d7b55e2101d0b2 (patch)
tree3c3fc84de82aa3ea88966eb4d26bf1706090b04f /ChangeLog
parentc6c6a74fed7aa5d73d13bd98f3e6204002eeec32 (diff)
downloadruby-cb410ff93206316d00355cb2c2d7b55e2101d0b2.tar.gz
* gc.c (get_envparam_int): don't accept a value equals to lowerbound
(changed by last commit) because "" or "foo" (not a number) strings are parsed as 0. They should be rejected. * gc.c (get_envparam_double): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44861 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 66ed65535b..84a48d0fb4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Thu Feb 6 15:17:30 2014 Koichi Sasada <ko1@atdot.net>
+
+ * gc.c (get_envparam_int): don't accept a value equals to lowerbound
+ (changed by last commit) because "" or "foo" (not a number) strings
+ are parsed as 0. They should be rejected.
+
+ * gc.c (get_envparam_double): ditto.
+
Thu Feb 6 09:00:35 2014 Koichi Sasada <ko1@atdot.net>
* gc.c (ruby_gc_set_params): if RUBY_GC_OLDMALLOC_LIMIT is provided,
@@ -5,7 +13,7 @@ Thu Feb 6 09:00:35 2014 Koichi Sasada <ko1@atdot.net>
Without this fix, the env variable RUBY_GC_OLDMALLOC_LIMIT
does not work.
- * gc.c (get_envparam_int): accept a value equals to lowerbounds.
+ * gc.c (get_envparam_int): accept a value equals to lowerbound.
* gc.c (get_envparam_double): ditto.