Don't do SSL_clear unless the SSL object is initialized.

This commit is contained in:
Jan Vidar Krey
2011-08-16 12:06:34 +02:00
parent 3353049ae3
commit 47cf3326fd
+2 -1
View File
@@ -180,7 +180,8 @@ void net_con_close(struct net_connection* con)
g_backend->handler.con_del(g_backend->data, con);
#ifdef SSL_SUPPORT
SSL_clear(con->ssl);
if (con->ssl)
SSL_clear(con->ssl);
#endif
net_close(con->sd);