From: Linus Nordberg Date: Fri, 11 Mar 2011 12:19:01 +0000 (+0100) Subject: Do free the connection object. X-Git-Tag: libradsec-0.0.1~24^2~2 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=radsecproxy.git;a=commitdiff_plain;h=2913a6b0f4fc5d097843d8c80786b8c313fb9d30 Do free the connection object. --- diff --git a/lib/conn.c b/lib/conn.c index 5382888..f737820 100644 --- a/lib/conn.c +++ b/lib/conn.c @@ -132,6 +132,8 @@ rs_conn_destroy (struct rs_connection *conn) /* TODO: free tls_ctx */ /* TODO: free tls_ssl */ + rs_free (conn->ctx, conn); + return err; }