From ab01223c4583cb5da93046b05baddc75a3b27bc8 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Tue, 15 Mar 2011 10:43:22 +0100 Subject: [PATCH] Don't touch TLS specific things w/o RS_ENABLE_TLS. --- lib/conn.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/conn.c b/lib/conn.c index 249c50d..36893bc 100644 --- a/lib/conn.c +++ b/lib/conn.c @@ -127,10 +127,12 @@ rs_conn_destroy (struct rs_connection *conn) if (conn->is_connected) err = rs_conn_disconnect (conn); +#if defined (RS_ENABLE_TLS) if (conn->tls_ssl) /* FIXME: Free SSL strucxt in rs_conn_disconnect? */ SSL_free (conn->tls_ssl); if (conn->tls_ctx) SSL_CTX_free (conn->tls_ctx); +#endif if (conn->tev) event_free (conn->tev); -- 2.1.4