summaryrefslogtreecommitdiffstats
path: root/mpi-patches
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-12-12 14:57:16 -0800
committerKaz Kylheku <kaz@kylheku.com>2011-12-12 14:57:16 -0800
commit1c31934c8294fec086bcfcd43479a3a399234ff7 (patch)
tree056ecf6f93089dea64dd81901be88155cf714f63 /mpi-patches
parenta16a902df2469cbde86ffb6344ade1d987dd2f86 (diff)
downloadtxr-1c31934c8294fec086bcfcd43479a3a399234ff7.tar.gz
txr-1c31934c8294fec086bcfcd43479a3a399234ff7.tar.bz2
txr-1c31934c8294fec086bcfcd43479a3a399234ff7.zip
* mpi-patches/fix-mult-bug: One more flaw discovered in
s_mp_mul_d and added to patch. This one caused malloc corruption and crashes, because the incorrect arithmetic causes the function to think that the multiplication will not be needing another digit, but then there is a carry out which does spill into a new digit. * mpi-patches/series: Arg! Somehow the patch fix-bad-shift went missing from the series file, even though the patch itself is in the GIT repository.
Diffstat (limited to 'mpi-patches')
-rw-r--r--mpi-patches/fix-mult-bug13
-rw-r--r--mpi-patches/series1
2 files changed, 12 insertions, 2 deletions
diff --git a/mpi-patches/fix-mult-bug b/mpi-patches/fix-mult-bug
index bb8b0f0d..78bc59b1 100644
--- a/mpi-patches/fix-mult-bug
+++ b/mpi-patches/fix-mult-bug
@@ -1,7 +1,16 @@
Index: mpi-1.8.6/mpi.c
===================================================================
---- mpi-1.8.6.orig/mpi.c 2011-12-10 19:41:00.000000000 -0800
-+++ mpi-1.8.6/mpi.c 2011-12-10 19:43:09.000000000 -0800
+--- mpi-1.8.6.orig/mpi.c 2011-12-10 19:43:20.000000000 -0800
++++ mpi-1.8.6/mpi.c 2011-12-12 14:31:12.000000000 -0800
+@@ -3255,7 +3255,7 @@
+ unless absolutely necessary.
+ */
+ max = USED(a);
+- w = dp[max - 1] * d;
++ w = dp[max - 1] * (mp_word) d;
+ if(CARRYOUT(w) != 0) {
+ if((res = s_mp_pad(a, max + 1)) != MP_OKAY)
+ return res;
@@ -3263,7 +3263,7 @@
}
diff --git a/mpi-patches/series b/mpi-patches/series
index 65556a57..5a4854d0 100644
--- a/mpi-patches/series
+++ b/mpi-patches/series
@@ -8,3 +8,4 @@ add-mpi-toradix-with-case
fix-mult-bug
mpi-set-mpi-word
mpi-set-double-intptr
+fix-bad-shifts