From: Timo Sirainen Date: Sat, 23 Nov 2013 19:13:26 +0000 (+0200) Subject: replicator: Memory leak fix for previous commit X-Git-Tag: 2.2.9~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=deab624f18dc0c1631c9edcffb106714ad2dbfe0;p=thirdparty%2Fdovecot%2Fcore.git replicator: Memory leak fix for previous commit --- diff --git a/src/replication/replicator/dsync-client.c b/src/replication/replicator/dsync-client.c index 20f411da3b..b36741e5f5 100644 --- a/src/replication/replicator/dsync-client.c +++ b/src/replication/replicator/dsync-client.c @@ -95,6 +95,7 @@ void dsync_client_deinit(struct dsync_client **_client) *_client = NULL; dsync_disconnect(client); + i_free(client->dsync_params); i_free(client->path); i_free(client); }