X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/432c4e184d44704511a5991b80224a87cb1d4613..298182ad446aaced14dea7ed0e7c968946787288:/gfx-kmul.c diff --git a/gfx-kmul.c b/gfx-kmul.c index c692f9c..940243d 100644 --- a/gfx-kmul.c +++ b/gfx-kmul.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: gfx-kmul.c,v 1.3 2004/03/27 17:54:11 mdw Exp $ + * $Id$ * * Karatsuba's multiplication algorithm on binary polynomials * @@ -27,20 +27,6 @@ * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: gfx-kmul.c,v $ - * Revision 1.3 2004/03/27 17:54:11 mdw - * Standard curves and curve checking. - * - * Revision 1.2 2002/10/09 00:36:03 mdw - * Fix bounds on workspace for Karatsuba operations. - * - * Revision 1.1 2000/10/08 15:49:37 mdw - * First glimmerings of binary polynomial arithmetic. - * - */ - /*----- Header files ------------------------------------------------------*/ #include @@ -243,7 +229,7 @@ static int mul(dstr *v) ok = 0; } - free(a); free(b); free(c); free(d); free(s); + xfree(a); xfree(b); xfree(c); xfree(d); xfree(s); return (ok); }