remove init assignment

This commit is contained in:
Ryan Mitchell 2021-09-28 00:13:04 -07:00
parent 0db0b47f16
commit f2ae4c30d0
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ SWITCH_DECLARE(switch_bool_t) switch_core_check_dtls_pem(const char *file)
FILE *fp = NULL; FILE *fp = NULL;
EVP_PKEY *pkey = NULL; EVP_PKEY *pkey = NULL;
int bits = 0; int bits = 0;
int min_cert_size_bits = 0; int min_cert_size_bits;
if (switch_is_file_path(file)) { if (switch_is_file_path(file)) {
pem = strdup(file); pem = strdup(file);