Skip to content
Snippets Groups Projects
Commit 71e5ad71 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

resolve warning

svn:r664
parent 6b79d8a7
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment