summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pack.c27
1 files changed, 24 insertions, 3 deletions
diff --git a/pack.c b/pack.c
index 7a1a425cee..b1efef54f1 100644
--- a/pack.c
+++ b/pack.c
@@ -14,6 +14,7 @@
#include <sys/types.h>
#include <ctype.h>
#include <errno.h>
+#include <float.h>
/*
* It is intentional that the condition for natstr is HAVE_TRUE_LONG_LONG
@@ -148,6 +149,26 @@ unknown_directive(const char *mode, char type, VALUE fmt)
mode, unknown, fmt);
}
+static float
+VALUE_to_float(VALUE obj)
+{
+ VALUE v = rb_to_float(obj);
+ double d = RFLOAT_VALUE(v);
+
+ if (isnan(d)) {
+ return NAN;
+ }
+ else if (d < -FLT_MAX) {
+ return -INFINITY;
+ }
+ else if (d <= FLT_MAX) {
+ return d;
+ }
+ else {
+ return INFINITY;
+ }
+}
+
/*
* call-seq:
* arr.pack( aTemplateString ) -> aBinaryString
@@ -663,7 +684,7 @@ pack_pack(int argc, VALUE *argv, VALUE ary)
float f;
from = NEXTFROM;
- f = (float)RFLOAT_VALUE(rb_to_float(from));
+ f = VALUE_to_float(from);
rb_str_buf_cat(res, (char*)&f, sizeof(float));
}
break;
@@ -673,7 +694,7 @@ pack_pack(int argc, VALUE *argv, VALUE ary)
FLOAT_CONVWITH(tmp);
from = NEXTFROM;
- tmp.f = (float)RFLOAT_VALUE(rb_to_float(from));
+ tmp.f = VALUE_to_float(from);
HTOVF(tmp);
rb_str_buf_cat(res, tmp.buf, sizeof(float));
}
@@ -704,7 +725,7 @@ pack_pack(int argc, VALUE *argv, VALUE ary)
while (len-- > 0) {
FLOAT_CONVWITH(tmp);
from = NEXTFROM;
- tmp.f = (float)RFLOAT_VALUE(rb_to_float(from));
+ tmp.f = VALUE_to_float(from);
HTONF(tmp);
rb_str_buf_cat(res, tmp.buf, sizeof(float));
}