summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-05-25 15:15:43 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-05-25 15:15:43 +0000
commitc4b2eb24b326b74e549c70a4c228c3ba4327c64c (patch)
treed1b552ea696ba692fe84c76ce3a8c91ff520b2d7 /ssl
parent03e3fbb702fe370730c0fc9f4de2938531a45fbf (diff)
PR: 2529
Submitted by: Marcus Meissner <meissner@suse.de> Reviewed by: steve Call ssl_new() to reallocate SSL BIO internals if we want to replace the existing internal SSL structure.
Diffstat (limited to 'ssl')
-rw-r--r--ssl/bio_ssl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ssl/bio_ssl.c b/ssl/bio_ssl.c
index 420deb7fc9..f0a031c71d 100644
--- a/ssl/bio_ssl.c
+++ b/ssl/bio_ssl.c
@@ -348,7 +348,11 @@ static long ssl_ctrl(BIO *b, int cmd, long num, void *ptr)
break;
case BIO_C_SET_SSL:
if (ssl != NULL)
+ {
ssl_free(b);
+ if (!ssl_new(b))
+ return 0;
+ }
b->shutdown=(int)num;
ssl=(SSL *)ptr;
((BIO_SSL *)b->ptr)->ssl=ssl;