summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/securerandom.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7a42a8f8c0..aeb8339973 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon May 7 20:14:15 2012 Tanaka Akira <akr@fsij.org>
+
+ * lib/securerandom.rb (random_bytes): call to_int method for the
+ argument at first.
+
Mon May 7 17:54:12 2012 NARUSE, Yui <naruse@ruby-lang.org>
* lib/minitest/unit.rb (assert_match): replace matcher only if both
diff --git a/lib/securerandom.rb b/lib/securerandom.rb
index a12e92fc7a..f550ce6615 100644
--- a/lib/securerandom.rb
+++ b/lib/securerandom.rb
@@ -54,7 +54,7 @@ module SecureRandom
# If secure random number generator is not available,
# NotImplementedError is raised.
def self.random_bytes(n=nil)
- n ||= 16
+ n = n ? n.to_int : 16
if defined? OpenSSL::Random
@pid = 0 if !defined?(@pid)