diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-03-04 12:07:50 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-03-04 12:07:50 -0800 |
commit | 719ebb6a8ddfb5bc9697aab485f9b76ed387cc05 (patch) | |
tree | ed81a872a59d20ed0ba58ad57908ba853d1e7de9 /arith.c | |
parent | 3490dd06c52d5aa7c258f03025a05064837ce1c6 (diff) | |
download | txr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |