Move a restartable ecp context to a conditional compilation block

This was an unused variable when compiling with parameter validation
but without ecp_restartable
This commit is contained in:
Andrzej Kurek 2019-02-11 03:44:29 -05:00
parent f352f75f6b
commit f389629556

View File

@ -43,7 +43,9 @@ void ecp_invalid_param( )
unsigned char buf[42] = { 0 };
const unsigned char *null_buf = NULL;
mbedtls_ecp_group_id valid_group = MBEDTLS_ECP_DP_SECP192R1;
#if defined(MBEDTLS_ECP_RESTARTABLE)
mbedtls_ecp_restart_ctx restart_ctx;
#endif /* MBEDTLS_ECP_RESTARTABLE */
TEST_INVALID_PARAM( mbedtls_ecp_point_init( NULL ) );
TEST_INVALID_PARAM( mbedtls_ecp_keypair_init( NULL ) );