PR: 2073
Submitted by: Tomas Mraz <tmraz@redhat.com> Approved by: steve@openssl.org Don't access freed SSL_CTX in SSL_free().
This commit is contained in:
parent
08896dc0bd
commit
3a0b6de4d0
1 changed files with 2 additions and 1 deletions
|
@ -508,7 +508,6 @@ void SSL_free(SSL *s)
|
|||
if (s->cert != NULL) ssl_cert_free(s->cert);
|
||||
/* Free up if allocated */
|
||||
|
||||
if (s->ctx) SSL_CTX_free(s->ctx);
|
||||
#ifndef OPENSSL_NO_TLSEXT
|
||||
if (s->tlsext_hostname)
|
||||
OPENSSL_free(s->tlsext_hostname);
|
||||
|
@ -526,6 +525,8 @@ void SSL_free(SSL *s)
|
|||
|
||||
if (s->method != NULL) s->method->ssl_free(s);
|
||||
|
||||
if (s->ctx) SSL_CTX_free(s->ctx);
|
||||
|
||||
#ifndef OPENSSL_NO_KRB5
|
||||
if (s->kssl_ctx != NULL)
|
||||
kssl_ctx_free(s->kssl_ctx);
|
||||
|
|
Loading…
Reference in a new issue