Signed-off-by: Gabor Mezei <[email protected]>
This commit is contained in:
Gabor Mezei
2022-12-20 17:30:19 +01:00
parent 6a31b7252d
commit 2840884c35
+1 -1
View File
@@ -187,7 +187,7 @@ int mbedtls_mpi_mod_mul( mbedtls_mpi_mod_residue *X,
if( X->limbs != N->limbs || A->limbs != N->limbs || B->limbs != N->limbs )
return MBEDTLS_ERR_MPI_BAD_INPUT_DATA;
mbedtls_mpi_uint *T = mbedtls_calloc( N->limbs * 2 + 1, ciL );
mbedtls_mpi_uint *T = mbedtls_calloc( N->limbs * 2 + 1, ciL );
if( !T )
return MBEDTLS_ERR_MPI_ALLOC_FAILED;