Remove unnecessary mark as unused #1098

`ret` is used always at line 1305 in statement:
`if( ( ret = pk_parse_key_pkcs8_unencrypted_der( pk, key, keylen ) ) == 0 )`
This commit is contained in:
Dawid Drozd 2018-07-11 15:16:53 +02:00
parent 00af447ba8
commit 0e2c07e83e
No known key found for this signature in database
GPG Key ID: E0361F51F23222A2

View File

@ -1261,7 +1261,6 @@ int mbedtls_pk_parse_key( mbedtls_pk_context *pk,
return( ret );
#endif /* MBEDTLS_PKCS12_C || MBEDTLS_PKCS5_C */
#else
((void) ret);
((void) pwd);
((void) pwdlen);
#endif /* MBEDTLS_PEM_PARSE_C */