Skip to content
Snippets Groups Projects
Commit d0fe741b authored by Niels Möller's avatar Niels Möller
Browse files

* modules/Gmp/mpz_glue.c (get_mpz_from_digits): Fixed small memory

leak.

Rev: src/modules/Gmp/mpz_glue.c:1.19
parent 21685ca7
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
||| See the files COPYING and DISCLAIMER for more information. ||| See the files COPYING and DISCLAIMER for more information.
\*/ \*/
#include "global.h" #include "global.h"
RCSID("$Id: mpz_glue.c,v 1.18 1997/05/19 22:48:54 hubbe Exp $"); RCSID("$Id: mpz_glue.c,v 1.19 1997/06/04 16:02:02 nisse Exp $");
#include "gmp_machine.h" #include "gmp_machine.h"
#if !defined(HAVE_LIBGMP) #if !defined(HAVE_LIBGMP)
...@@ -59,6 +59,7 @@ static void get_mpz_from_digits(MP_INT *tmp, ...@@ -59,6 +59,7 @@ static void get_mpz_from_digits(MP_INT *tmp,
mpz_mul_2exp(digit, digit, (digits->len - i - 1) * 8); mpz_mul_2exp(digit, digit, (digits->len - i - 1) * 8);
mpz_ior(tmp, tmp, digit); mpz_ior(tmp, tmp, digit);
} }
mpz_clear(digit);
} }
else else
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment