提交 d62bfb39 编写于 作者: L Lutz Jänicke

Fix the fix (Yoram Zahavi)...

上级 ce4b274a
......@@ -143,6 +143,12 @@ int SSL_clear(SSL *s)
return(0);
}
if (ssl_clear_bad_session(s))
{
SSL_SESSION_free(s->session);
s->session=NULL;
}
s->error=0;
s->hit=0;
s->shutdown=0;
......@@ -162,12 +168,6 @@ int SSL_clear(SSL *s)
s->type=0;
if (ssl_clear_bad_session(s))
{
SSL_SESSION_free(s->session);
s->session=NULL;
}
s->state=SSL_ST_BEFORE|((s->server)?SSL_ST_ACCEPT:SSL_ST_CONNECT);
s->version=s->method->version;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册