diff options
author | Werner Koch <[email protected]> | 2005-07-27 18:10:56 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2005-07-27 18:10:56 +0000 |
commit | a1cdf3c75fd5c644607b1877207d1d5b507a5bb9 (patch) | |
tree | db7ed08934f367159a6792990476c0991fa44246 /mpi/mpih-mul.c | |
parent | Removed directories which are only used by the 1.9 branch (diff) | |
download | gnupg-a1cdf3c75fd5c644607b1877207d1d5b507a5bb9.tar.gz gnupg-a1cdf3c75fd5c644607b1877207d1d5b507a5bb9.zip |
Converted all m_free to xfree etc.
Diffstat (limited to 'mpi/mpih-mul.c')
-rw-r--r-- | mpi/mpih-mul.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mpi/mpih-mul.c b/mpi/mpih-mul.c index b35f4618b..397ec6066 100644 --- a/mpi/mpih-mul.c +++ b/mpi/mpih-mul.c @@ -422,7 +422,7 @@ mpihelp_mul_karatsuba_case( mpi_ptr_t prodp, } else { if( !ctx->next ) { - ctx->next = m_alloc_clear( sizeof *ctx ); + ctx->next = xmalloc_clear( sizeof *ctx ); } mpihelp_mul_karatsuba_case( ctx->tspace, vp, vsize, @@ -451,7 +451,7 @@ mpihelp_release_karatsuba_ctx( struct karatsuba_ctx *ctx ) mpi_free_limb_space( ctx->tp ); if( ctx->tspace ) mpi_free_limb_space( ctx->tspace ); - m_free( ctx ); + xfree( ctx ); } } |