aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/reload.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/reload.c')
-rw-r--r--sway/commands/reload.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/sway/commands/reload.c b/sway/commands/reload.c
index c64de4bd..3ccbbf34 100644
--- a/sway/commands/reload.c
+++ b/sway/commands/reload.c
@@ -24,8 +24,7 @@ static void do_reload(void *data) {
24 24
25 if (!load_main_config(config->current_config_path, true, false)) { 25 if (!load_main_config(config->current_config_path, true, false)) {
26 wlr_log(WLR_ERROR, "Error(s) reloading config"); 26 wlr_log(WLR_ERROR, "Error(s) reloading config");
27 list_foreach(bar_ids, free); 27 list_free_items_and_destroy(bar_ids);
28 list_free(bar_ids);
29 return; 28 return;
30 } 29 }
31 30
@@ -42,9 +41,7 @@ static void do_reload(void *data) {
42 } 41 }
43 } 42 }
44 } 43 }
45 44 list_free_items_and_destroy(bar_ids);
46 list_foreach(bar_ids, free);
47 list_free(bar_ids);
48 45
49 config_update_font_height(true); 46 config_update_font_height(true);
50 root_for_each_container(rebuild_textures_iterator, NULL); 47 root_for_each_container(rebuild_textures_iterator, NULL);