From c5ef0ce4b78d5b318f0883fe872168bc8b234187 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martti=20Rannanj=C3=A4rvi?= Date: Mon, 31 Jan 2022 12:42:46 +0200 Subject: [PATCH] replication: aggregator - Free replicator_connection content --- src/replication/aggregator/replicator-connection.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/replication/aggregator/replicator-connection.c b/src/replication/aggregator/replicator-connection.c index 4c64503999..9275376685 100644 --- a/src/replication/aggregator/replicator-connection.c +++ b/src/replication/aggregator/replicator-connection.c @@ -256,6 +256,8 @@ void replicator_connection_destroy(struct replicator_connection **_conn) timeout_remove(&conn->to); hash_table_destroy(&conn->requests); + i_free(conn->ips); + i_free(conn->path); i_free(conn); } -- 2.47.3