Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-09-27 14:13:11 +0400
committerRichard Levitte <levitte@openssl.org>2003-09-27 14:13:11 +0400
commit2fe7c59277ac077b8914200e70fa519200fdcf15 (patch)
treeee32f215216a072bee7c21a24c3d3c0305567c07 /ssl
parent899ffab2c9549e2fddfae2267e11b108f057af73 (diff)
Recent changes from 0.9.7-stable.
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_lib.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index 2d502d1354..3e0e703019 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -474,6 +474,11 @@ void SSL_free(SSL *s)
if (s->method != NULL) s->method->ssl_free(s);
+#ifndef OPENSSL_NO_KRB5
+ if (s->kssl_ctx != NULL)
+ kssl_ctx_free(s->kssl_ctx);
+#endif /* OPENSSL_NO_KRB5 */
+
OPENSSL_free(s);
}