mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 10:58:18 +00:00
ssl_test.c: remove dead store, assign at declaration
Found with Clang's `scan-build` tool. The store to `ret` is not used, it's overwritten shortly after. Assign the value of 1 at declaration time instead to silence scan-build.
This commit is contained in:
parent
1d42b3ea7e
commit
5b78f219d0
1 changed files with 1 additions and 3 deletions
|
@ -142,7 +142,7 @@ static void my_debug( void *ctx, int level, const char *str )
|
|||
*/
|
||||
static int ssl_test( struct options *opt )
|
||||
{
|
||||
int ret, i;
|
||||
int ret = 1, i;
|
||||
int client_fd = -1;
|
||||
int bytes_to_read;
|
||||
int bytes_to_write;
|
||||
|
@ -169,8 +169,6 @@ static int ssl_test( struct options *opt )
|
|||
x509_crt srvcert;
|
||||
pk_context pkey;
|
||||
|
||||
ret = 1;
|
||||
|
||||
memset( &ssl, 0, sizeof(ssl_context) );
|
||||
entropy_init( &entropy );
|
||||
x509_crt_init( &srvcert );
|
||||
|
|
Loading…
Reference in a new issue