Skip to content

Commit

Permalink
session mbedtls REFACTOR remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
roman committed May 14, 2024
1 parent 2c17572 commit c630961
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/session_mbedtls.c
Original file line number Diff line number Diff line change
Expand Up @@ -1705,14 +1705,10 @@ nc_server_tls_get_crl_distpoint_uris_wrap(void *cert_store, char ***uris, int *u
{
int ret = 0;
mbedtls_x509_crt *cert;
unsigned char *p, *end_v3_ext, *end_ext, *end_ext_octet, *end_crl_dist_points;
unsigned char *p, *end_v3_ext, *end_ext, *end_ext_octet;
size_t len;
mbedtls_x509_buf ext_oid = {0};
int is_critical = 0;
mbedtls_x509_sequence general_names = {0};
mbedtls_x509_sequence *iter = NULL;
mbedtls_x509_subject_alternative_name san = {0};
void *tmp;

NC_CHECK_ARG_RET(NULL, cert_store, uris, uri_count, 1);

Expand Down

0 comments on commit c630961

Please sign in to comment.