mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Free memory of id_list lists.
This commit is contained in:
parent
ffc5e6f0cc
commit
6fbc510aeb
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue