free the data paths
This commit is contained in:
parent
6a00a44b99
commit
26b98ded3c
1 changed files with 4 additions and 0 deletions
|
@ -348,6 +348,10 @@ void parse_paths_shutdown()
|
|||
g_free(it->data);
|
||||
g_slist_free(xdg_config_dir_paths);
|
||||
xdg_config_dir_paths = NULL;
|
||||
for (it = xdg_data_dir_paths; it; it = g_slist_next(it))
|
||||
g_free(it->data);
|
||||
g_slist_free(xdg_data_dir_paths);
|
||||
xdg_data_dir_paths = NULL;
|
||||
}
|
||||
|
||||
gchar *parse_expand_tilde(const gchar *f)
|
||||
|
|
Loading…
Reference in a new issue