summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-03-04 12:07:50 -0800
committerKaz Kylheku <kaz@kylheku.com>2012-03-04 12:07:50 -0800
commit719ebb6a8ddfb5bc9697aab485f9b76ed387cc05 (patch)
treeed81a872a59d20ed0ba58ad57908ba853d1e7de9 /arith.c
parent3490dd06c52d5aa7c258f03025a05064837ce1c6 (diff)
downloadtxr-719ebb6a8ddfb5bc9697aab485f9b76ed387cc05.tar.gz
txr-719ebb6a8ddfb5bc9697aab485f9b76ed387cc05.tar.bz2
txr-719ebb6a8ddfb5bc9697aab485f9b76ed387cc05.zip
* arith.c (plus): Showstopper bug: plus(bignum, fixnum)
broken for fixnum <= 0. Bad pointer passed to MPI.
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 aed631a3..450b4e38 100644
--- a/arith.c
+++ b/arith.c
@@ -305,7 +305,7 @@ val plus(val anum, val bnum)
if (b > 0)
mp_add_d(mp(anum), bp, mp(n));
else
- mp_sub_d(mp(bnum), bp, mp(n));
+ mp_sub_d(mp(anum), bp, mp(n));
} else {
mp_int tmp;
mp_init(&tmp);