From 71e5ad714bd5c6111d31d1a2879e89d2227cb254 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 23 Oct 2003 14:27:53 +0000 Subject: resolve warning svn:r664 --- src/common/tortls.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/tortls.c b/src/common/tortls.c index a665909bb..181e6df7f 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -274,7 +274,8 @@ tor_tls_context_new(crypto_pk_env_t *rsa, if (global_tls_context) { /* This is safe even if there are open connections: OpenSSL does * reference counting with SSL and SSL_CTX objects. */ - SSL_CTX_free(global_tls_context); + SSL_CTX_free(global_tls_context->ctx); + free(global_tls_context); } global_tls_context = result; return 0; -- cgit v1.2.3