diff options
Diffstat (limited to 'Source')
-rw-r--r-- | Source/charon/utils/gmp_helper.c | 4 |
1 files 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; } |