From 18c617ecf29b9dfb95227e764c76fff0f9d7af96 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Fri, 3 Dec 2004 13:22:18 +0000 Subject: [PATCH] Free memory used by connection_t after it is deleted from the connection tree. --- src/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection.c b/src/connection.c index 60dd5411..834b7d77 100644 --- a/src/connection.c +++ b/src/connection.c @@ -44,7 +44,7 @@ void init_connections(void) { cp(); - connection_tree = avl_alloc_tree((avl_compare_t) connection_compare, NULL); + connection_tree = avl_alloc_tree((avl_compare_t) connection_compare, (avl_action_t) free); broadcast = new_connection(); broadcast->name = xstrdup(_("everyone")); broadcast->hostname = xstrdup(_("BROADCAST")); -- 2.20.1