Remove frame/pk parameter from mbedtls_x509_crt_xxx_release()

This commit is contained in:
Hanno Becker 2019-03-05 13:50:56 +00:00
parent 7dbf49a518
commit c6d1c3ed1c
8 changed files with 36 additions and 46 deletions

View file

@ -1099,7 +1099,7 @@ static int ssl_async_start( mbedtls_ssl_context *ssl,
if( ret != 0 )
return( ret );
match = mbedtls_pk_check_pair( pk, config_data->slots[slot].pk );
mbedtls_x509_crt_pk_release( cert, pk );
mbedtls_x509_crt_pk_release( cert );
if( match == 0 )
break;
}