mirror of
https://github.com/swaywm/sway.git
synced 2026-04-28 06:46:26 -04:00
list.c: rename free_flat_list to list_free_items_and_destroy
This commit is contained in:
parent
c8776fac42
commit
98c1e19466
12 changed files with 20 additions and 20 deletions
|
|
@ -444,7 +444,7 @@ bool load_main_config(const char *file, bool is_active, bool validating) {
|
|||
}
|
||||
}
|
||||
|
||||
free_flat_list(secconfigs);
|
||||
list_free_items_and_destroy(secconfigs);
|
||||
}
|
||||
*/
|
||||
|
||||
|
|
@ -652,7 +652,7 @@ bool read_config(FILE *file, struct sway_config *config,
|
|||
|
||||
if (read + length > config_size) {
|
||||
wlr_log(WLR_ERROR, "Config file changed during reading");
|
||||
free_flat_list(stack);
|
||||
list_free_items_and_destroy(stack);
|
||||
free(line);
|
||||
return false;
|
||||
}
|
||||
|
|
@ -681,7 +681,7 @@ bool read_config(FILE *file, struct sway_config *config,
|
|||
}
|
||||
char *expanded = expand_line(block, line, brace_detected > 0);
|
||||
if (!expanded) {
|
||||
free_flat_list(stack);
|
||||
list_free_items_and_destroy(stack);
|
||||
free(line);
|
||||
return false;
|
||||
}
|
||||
|
|
@ -746,7 +746,7 @@ bool read_config(FILE *file, struct sway_config *config,
|
|||
free(line);
|
||||
free_cmd_results(res);
|
||||
}
|
||||
free_flat_list(stack);
|
||||
list_free_items_and_destroy(stack);
|
||||
config->current_config_line_number = 0;
|
||||
config->current_config_line = NULL;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue