summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--THANKS3
-rw-r--r--mpi/ChangeLog6
-rw-r--r--mpi/mpiutil.c3
3 files changed, 11 insertions, 1 deletions
diff --git a/THANKS b/THANKS
index a1e3c728..84508bdf 100644
--- a/THANKS
+++ b/THANKS
@@ -28,11 +28,12 @@ Thomas Roessler roessler@guug.de
Tom Spindler dogcow@home.merit.edu
Tom Zerucha tzeruch@ceddec.com
Tomas Fasth tomas.fasth@twinspot.net
+Thomas Mikkelsen tbm@image.dk
Ulf Möller 3umoelle@informatik.uni-hamburg.de
Walter Koch walterk@ddorf.rhein-ruhr.de
Werner Koch werner.koch@guug.de
Wim Vandeputte bunbun@reptile.rug.ac.be
-
+ nbecker@hns.com
Thanks to the German Unix User Group for providing FTP space and
Martin Hamilton for hosting the mailing list.
diff --git a/mpi/ChangeLog b/mpi/ChangeLog
index 0519495c..a52381d0 100644
--- a/mpi/ChangeLog
+++ b/mpi/ChangeLog
@@ -1,3 +1,9 @@
+Fri Jun 26 11:19:06 1998 Werner Koch (wk@isil.d.shuttle.de)
+
+ * mpiutil.c (mpi_alloc): set nbits to 0.
+ (mpi_alloc_secure): Ditto.
+ (mpi_clear): Ditto.
+
Thu Jun 25 11:50:01 1998 Werner Koch (wk@isil.d.shuttle.de)
* mips3/*.S: New
diff --git a/mpi/mpiutil.c b/mpi/mpiutil.c
index 92b16538..231e5d57 100644
--- a/mpi/mpiutil.c
+++ b/mpi/mpiutil.c
@@ -64,6 +64,7 @@ mpi_alloc( unsigned nlimbs )
a->nlimbs = 0;
a->sign = 0;
a->flags = 0;
+ a->nbits = 0;
return a;
}
@@ -96,6 +97,7 @@ mpi_alloc_secure( unsigned nlimbs )
a->flags |= 1;
a->nlimbs = 0;
a->sign = 0;
+ a->nbits = 0;
return a;
}
@@ -175,6 +177,7 @@ void
mpi_clear( MPI a )
{
a->nlimbs = 0;
+ a->nbits = 0;
}