summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index c27187f4f4..26ce683daa 100644
--- a/numeric.c
+++ b/numeric.c
@@ -2120,9 +2120,18 @@ static VALUE
int_chr(int argc, VALUE *argv, VALUE num)
{
char c;
- unsigned int i = NUM2UINT(num);
+ unsigned int i;
rb_encoding *enc;
+ if (rb_num_to_uint(num, &i) == 0) {
+ }
+ else if (FIXNUM_P(num)) {
+ rb_raise(rb_eRangeError, "%ld out of char range", FIX2LONG(num));
+ }
+ else {
+ rb_raise(rb_eRangeError, "bignum out of char range");
+ }
+
switch (argc) {
case 0:
if (0xff < i) {