From d983296dd268e8210529f946cc3041b8a845bbb1 Mon Sep 17 00:00:00 2001 From: lda Date: Mon, 3 Jun 2024 19:42:09 +0200 Subject: [PATCH] [MOD] As it turns out, you do need to free thr fd. --- src/Tls/TlsOpenSSL.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Tls/TlsOpenSSL.c b/src/Tls/TlsOpenSSL.c index c056ebc..07b7bd5 100644 --- a/src/Tls/TlsOpenSSL.c +++ b/src/Tls/TlsOpenSSL.c @@ -295,9 +295,7 @@ TlsClose(void *cookie) SSL_free(ssl->ssl); SSL_CTX_free(ssl->ctx); -#if 0 close(ssl->fd); -#endif Free(ssl);