diff --git a/src/csync.c b/src/csync.c index 8bb483f77..eec270fdf 100644 --- a/src/csync.c +++ b/src/csync.c @@ -734,8 +734,10 @@ int csync_destroy(CSYNC *ctx) { /* free memory */ c_rbtree_free(ctx->local.tree); c_list_free(ctx->local.list); + c_list_free(ctx->local.id_list); c_rbtree_free(ctx->remote.tree); c_list_free(ctx->remote.list); + c_list_free(ctx->remote.id_list); SAFE_FREE(ctx->local.uri); SAFE_FREE(ctx->remote.uri); SAFE_FREE(ctx->options.config_dir);