commit 0464a9910da2b99abea0ab202e179d66260a893b parent 0d0ab7c5ce148bce841fa0682d04bc7b6c21b902 Author: Drew DeVault <sir@cmpwn.com> Date: Thu, 29 Mar 2018 15:19:42 -0400 Clean up status line on exit Diffstat:
| M | swaybar/bar.c | | | 5 | +++++ |
| M | swaybar/status_line.c | | | 6 | ++++-- |
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/swaybar/bar.c b/swaybar/bar.c @@ -191,4 +191,9 @@ void bar_teardown(struct swaybar *bar) { if (bar->config) { free_config(bar->config); } + close(bar->ipc_event_socketfd); + close(bar->ipc_socketfd); + if (bar->status) { + status_line_free(bar->status); + } } diff --git a/swaybar/status_line.c b/swaybar/status_line.c @@ -73,6 +73,8 @@ struct status_line *status_line_init(char *cmd) { return status; } -void status_line_free(struct status_line *line) { - free(line); +void status_line_free(struct status_line *status) { + close(status->read_fd); + close(status->write_fd); + free(status); }