commit | b47fd5e8c9dcf5b6fe24c582d3226b401d6d14f2 | [log] [tgz] |
---|---|---|
author | Nicholas Wilson <nicholas.wilson@realvnc.com> | Wed Apr 13 11:50:33 2016 +0100 |
committer | Simon Butcher <simon.butcher@arm.com> | Mon May 23 14:29:28 2016 +0100 |
tree | 72154bd6139822e86dffc67bd6241ed2fc653b15 | |
parent | e73530302698229589971c8af970c8a1b3e13222 [diff] |
Remove a dead store to silence clang-analyze
diff --git a/library/ssl_cli.c b/library/ssl_cli.c index cd39db0..509484e 100644 --- a/library/ssl_cli.c +++ b/library/ssl_cli.c
@@ -267,7 +267,6 @@ #if defined(MBEDTLS_ECP_C) for( grp_id = ssl->conf->curve_list; *grp_id != MBEDTLS_ECP_DP_NONE; grp_id++ ) { - info = mbedtls_ecp_curve_info_from_grp_id( *grp_id ); #else for( info = mbedtls_ecp_curve_list(); info->grp_id != MBEDTLS_ECP_DP_NONE; info++ ) {