From faae6d2019cfc72149878347eeaf3af4d8485c0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Fri, 8 Jan 2016 15:24:46 +0100 Subject: [PATCH] Fix backporting mistakes in previous 5 commits --- library/bignum.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/library/bignum.c b/library/bignum.c index 975b6f8b4..4fe841c34 100644 --- a/library/bignum.c +++ b/library/bignum.c @@ -889,7 +889,7 @@ int mpi_add_abs( mpi *X, const mpi *A, const mpi *B ) { int ret; size_t i, j; - mpi_uint *o, *p, c, tmp; + t_uint *o, *p, c, tmp; if( X == B ) { @@ -934,14 +934,6 @@ int mpi_add_abs( mpi *X, const mpi *A, const mpi *B ) } cleanup: -<<<<<<< HEAD - if( &TB == B ) - { - mpi_free( &TB ); - } -======= ->>>>>>> 6c9226809370... Improved on the previous fix and added a test case to cover both types - return( ret ); }