summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-06-03 06:15:33 -0700
committerKaz Kylheku <kaz@kylheku.com>2019-06-03 06:15:33 -0700
commit012d09e4d51ad6b8988dbe7508b254dbb1327e8f (patch)
treecc5fae92f8dc44afd25ce80b272db7469a4c240a /arith.c
parent59863eeb3e6d00c782063866d899a35f83b07ea5 (diff)
downloadtxr-012d09e4d51ad6b8988dbe7508b254dbb1327e8f.tar.gz
txr-012d09e4d51ad6b8988dbe7508b254dbb1327e8f.tar.bz2
txr-012d09e4d51ad6b8988dbe7508b254dbb1327e8f.zip
arith: INT_PTR_MIN overflow bugfix.
* arith.c (int_flo): Don't subtract one from INT_PTR_MIN any more, since it is now the most negative integer already.
Diffstat (limited to 'arith.c')
-rw-r--r--arith.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arith.c b/arith.c
index be620755..c60835a3 100644
--- a/arith.c
+++ b/arith.c
@@ -2743,7 +2743,7 @@ val int_flo(val f)
val self = lit("int-flo");
double d = c_flo(f, self);
- if (d >= INT_PTR_MIN - 1 && d <= INT_PTR_MAX) {
+ if (d >= INT_PTR_MIN && d <= INT_PTR_MAX) {
cnum n = d;
if (n < NUM_MIN || n > NUM_MAX)
return bignum(n);