From f2ae4c30d0736b5f20e34a8b962f93be7d2574b6 Mon Sep 17 00:00:00 2001 From: Ryan Mitchell Date: Tue, 28 Sep 2021 00:13:04 -0700 Subject: [PATCH] remove init assignment --- src/switch_core_cert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_core_cert.c b/src/switch_core_cert.c index 276aef54b3..098684dbf9 100644 --- a/src/switch_core_cert.c +++ b/src/switch_core_cert.c @@ -336,7 +336,7 @@ SWITCH_DECLARE(switch_bool_t) switch_core_check_dtls_pem(const char *file) FILE *fp = NULL; EVP_PKEY *pkey = NULL; int bits = 0; - int min_cert_size_bits = 0; + int min_cert_size_bits; if (switch_is_file_path(file)) { pem = strdup(file);