Browse Source

Opps, freeing two in Pollard's ρ.

Michele Orrù 11 years ago
parent
commit
a4486c8e3b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/questions/pollardrho.c

+ 1 - 0
src/questions/pollardrho.c

@@ -69,6 +69,7 @@ pollardrho_question_ask_rsa(const RSA *rsa)
   BN_free(x);
   BN_free(y);
   BN_free(gcd);
+  BN_free(two);
   return ret;
 }