1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 09:58:01 +00:00

primegen: fix a small memory leak.

There's always one.
This commit is contained in:
Simon Tatham 2020-02-23 18:34:18 +00:00
parent 1b40d9f3ba
commit aba52744e4

View File

@ -237,5 +237,6 @@ mp_int *primegen(
/* /*
* We have a prime! * We have a prime!
*/ */
pcs_free(pcs);
return p; return p;
} }