Remove unnecessary call to mbedtls_mpi_free() in MPI tests

This commit is contained in:
Hanno Becker 2018-12-18 23:27:03 +00:00
parent b48e1aa846
commit 59274d43cb

View file

@ -257,8 +257,6 @@ void mpi_invalid_param( )
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
mbedtls_mpi_inv_mod( &X, &X, NULL ) );
mbedtls_mpi_free( NULL );
exit:
return;
}