From a27712a933b473e38b3eb2d64fa3a47f89c204d1 Mon Sep 17 00:00:00 2001 From: Jan Hutter Date: Fri, 25 Nov 2005 08:10:59 +0000 Subject: [PATCH] - chunk is freed differently --- Source/charon/utils/gmp_helper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/charon/utils/gmp_helper.c b/Source/charon/utils/gmp_helper.c index 745d69e0c..f0454a0be 100644 --- a/Source/charon/utils/gmp_helper.c +++ b/Source/charon/utils/gmp_helper.c @@ -80,7 +80,7 @@ static status_t mpz_to_chunk (private_gmp_helper_t *this,mpz_t *mpz_value, chunk if (tmp_chunk.ptr == NULL) { - allocator_free_chunk(tmp_chunk); + allocator_free_chunk(&tmp_chunk); return OUT_OF_RES; } @@ -109,7 +109,7 @@ static status_t mpz_to_chunk (private_gmp_helper_t *this,mpz_t *mpz_value, chunk *data = tmp_chunk; if (status != SUCCESS) { - allocator_free_chunk(tmp_chunk); + allocator_free_chunk(&tmp_chunk); } return status; }