mirror of
https://github.com/swaywm/sway.git
synced 2026-03-10 05:34:03 -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
|
|
@ -23,7 +23,7 @@ void free_sway_binding(struct sway_binding *binding) {
|
|||
return;
|
||||
}
|
||||
|
||||
free_flat_list(binding->keys);
|
||||
list_free_items_and_destroy(binding->keys);
|
||||
free(binding->input);
|
||||
free(binding->command);
|
||||
free(binding);
|
||||
|
|
@ -220,14 +220,14 @@ static struct cmd_results *cmd_bindsym_or_bindcode(int argc, char **argv,
|
|||
uint32_t *key = calloc(1, sizeof(uint32_t));
|
||||
if (!key) {
|
||||
free_sway_binding(binding);
|
||||
free_flat_list(split);
|
||||
list_free_items_and_destroy(split);
|
||||
return cmd_results_new(CMD_FAILURE, bindtype,
|
||||
"Unable to allocate binding key");
|
||||
}
|
||||
*key = key_val;
|
||||
list_add(binding->keys, key);
|
||||
}
|
||||
free_flat_list(split);
|
||||
list_free_items_and_destroy(split);
|
||||
binding->order = binding_order++;
|
||||
|
||||
// refine region of interest for mouse binding once we are certain
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue