1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 03:52:49 -05:00

Two small memory leaks, also noticed by Martin Prikryl.

[originally from svn r3752]
This commit is contained in:
Simon Tatham
2004-01-21 19:41:34 +00:00
parent b424ea234f
commit a326264500
2 changed files with 2 additions and 0 deletions

View File

@ -909,6 +909,7 @@ Bignum modinv(Bignum number, Bignum modulus)
x = bigmuladd(q, xp, t);
sign = -sign;
freebn(t);
freebn(q);
}
freebn(b);