Fix a couple of blatant memory leaks; thanks to Ruurd Beerstra for
[u/mdw/putty] / sshbn.c
diff --git a/sshbn.c b/sshbn.c
index 2d8359e..d0608a3 100644 (file)
--- a/sshbn.c
+++ b/sshbn.c
@@ -729,6 +729,7 @@ Bignum bigmuladd(Bignum a, Bignum b, Bignum addend)
     }
     ret[0] = maxspot;
 
+    sfree(workspace);
     return ret;
 }
 
@@ -1009,5 +1010,6 @@ char *bignum_decimal(Bignum x)
     /*
      * Done.
      */
+    sfree(workspace);
     return ret;
 }