diff options
Diffstat (limited to 'Build/source/libs/gmp/gmp-src/mpz/mul_i.h')
-rw-r--r-- | Build/source/libs/gmp/gmp-src/mpz/mul_i.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Build/source/libs/gmp/gmp-src/mpz/mul_i.h b/Build/source/libs/gmp/gmp-src/mpz/mul_i.h index 486a8fd63e6..65c9c2ffc3d 100644 --- a/Build/source/libs/gmp/gmp-src/mpz/mul_i.h +++ b/Build/source/libs/gmp/gmp-src/mpz/mul_i.h @@ -30,7 +30,6 @@ You should have received copies of the GNU General Public License and the GNU Lesser General Public License along with the GNU MP Library. If not, see https://www.gnu.org/licenses/. */ -#include "gmp.h" #include "gmp-impl.h" @@ -97,7 +96,7 @@ FUNCTION (mpz_ptr prod, mpz_srcptr mult, tp[size + 1] = cy; size += 2; MPN_NORMALIZE_NOT_ZERO (tp, size); /* too general, need to trim one or two limb */ - pp = MPZ_REALLOC (prod, size); + pp = MPZ_NEWALLOC (prod, size); MPN_COPY (pp, tp, size); TMP_FREE; } |