mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* random.c (random_float): rejects Infinity and NaN.
[ruby-core:24651] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24347 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5a5355e84f
commit
51d1c5e73b
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Sat Aug 1 18:50:53 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* random.c (random_float): rejects Infinity and NaN.
|
||||||
|
[ruby-core:24651]
|
||||||
|
|
||||||
Sat Aug 1 18:34:52 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sat Aug 1 18:34:52 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* tool/rbinstall.rb (gem): suppressed warnings.
|
* tool/rbinstall.rb (gem): suppressed warnings.
|
||||||
|
|
6
random.c
6
random.c
|
@ -196,6 +196,8 @@ genrand_real(struct MT *mt)
|
||||||
#ifdef HAVE_FCNTL_H
|
#ifdef HAVE_FCNTL_H
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#endif
|
#endif
|
||||||
|
#include <math.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
VALUE seed;
|
VALUE seed;
|
||||||
|
@ -939,6 +941,10 @@ random_float(int argc, VALUE *argv, VALUE obj)
|
||||||
!NIL_P(vmax = rb_to_float(vmax)) ||
|
!NIL_P(vmax = rb_to_float(vmax)) ||
|
||||||
(vmax = range_values(vmax, &beg)) != Qfalse) {
|
(vmax = range_values(vmax, &beg)) != Qfalse) {
|
||||||
max = RFLOAT_VALUE(vmax);
|
max = RFLOAT_VALUE(vmax);
|
||||||
|
if (isinf(max) || isnan(max)) {
|
||||||
|
VALUE error = INT2FIX(EDOM);
|
||||||
|
rb_exc_raise(rb_class_new_instance(1, &error, rb_eSystemCallError));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
beg = Qundef;
|
beg = Qundef;
|
||||||
|
|
Loading…
Reference in a new issue