aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-27 03:10:12 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-27 03:10:12 +0000
commitc1fc20124c269eab6a863e48c6647884b883de88 (patch)
tree2af8bddc38c96f414ac31d7985294eae1189f050 /ChangeLog
parent8dda9460590abbde03d813ee684dfdd147f3d31d (diff)
downloadruby-c1fc20124c269eab6a863e48c6647884b883de88.tar.gz
numeric.c: check signs before division
* numeric.c (ruby_num_interval_step_size): check signs and get rid of implementation dependent behavior of negative division. [ruby-core:61106] [Bug #9570] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45187 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 9740541e62..e6f0bc0f6b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Feb 27 12:10:09 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * numeric.c (ruby_num_interval_step_size): check signs and get rid
+ of implementation dependent behavior of negative division.
+ [ruby-core:61106] [Bug #9570]
+
Thu Feb 27 03:55:45 2014 Zachary Scott <e@zzak.io>
* thread.c: [DOC] Typo in comment for _FORTIFY_SOURCE [Fixes GH-548]