From: Martti Rannanjärvi Date: Mon, 31 Jan 2022 10:42:46 +0000 (+0200) Subject: replication: aggregator - Free replicator_connection content X-Git-Tag: 2.3.19~74 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c5ef0ce4b78d5b318f0883fe872168bc8b234187;p=thirdparty%2Fdovecot%2Fcore.git replication: aggregator - Free replicator_connection content --- 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); }