summaryrefslogtreecommitdiffstats
path: root/ssl/s3_lib.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2011-10-19 13:53:41 +0000
committerBodo Möller <bodo@openssl.org>2011-10-19 13:53:41 +0000
commitdacd94b9c86d4f5c60ac90a8bb5da4469dd603a5 (patch)
treed8b3968858cb3978cb3fccc2e29ebd90e2591751 /ssl/s3_lib.c
parent8070cb5f87b839e5926aae729f5ae6806c4cb851 (diff)
Oops: this change (http://cvs.openssl.org/chngview?cn=21503)
wasn't right for 0.9.8-stable (it's actually a fix for http://cvs.openssl.org/chngview?cn=14494, which introduced SSL_CTRL_SET_MAX_SEND_FRAGMENT).
Diffstat (limited to 'ssl/s3_lib.c')
-rw-r--r--ssl/s3_lib.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index 7e063969d2..a40621822b 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -1710,7 +1710,6 @@ void ssl3_clear(SSL *s)
{
unsigned char *rp,*wp;
size_t rlen, wlen;
- int init_extra;
ssl3_cleanup_key_block(s);
if (s->s3->tmp.ca_names != NULL)
@@ -1740,7 +1739,6 @@ void ssl3_clear(SSL *s)
wp = s->s3->wbuf.buf;
rlen = s->s3->rbuf.len;
wlen = s->s3->wbuf.len;
- init_extra = s->s3->init_extra;
EVP_MD_CTX_cleanup(&s->s3->finish_dgst1);
EVP_MD_CTX_cleanup(&s->s3->finish_dgst2);
@@ -1750,7 +1748,6 @@ void ssl3_clear(SSL *s)
s->s3->wbuf.buf = wp;
s->s3->rbuf.len = rlen;
s->s3->wbuf.len = wlen;
- s->s3->init_extra = init_extra;
ssl_free_wbio_buffer(s);