diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-29 15:19:42 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-03-29 22:11:08 -0400 |
commit | 0464a9910da2b99abea0ab202e179d66260a893b (patch) | |
tree | 6d81a2c85f6520f5ffc888d09894e02604789e05 | |
parent | 0d0ab7c5ce148bce841fa0682d04bc7b6c21b902 (diff) |
Clean up status line on exit
-rw-r--r-- | swaybar/bar.c | 5 | ||||
-rw-r--r-- | swaybar/status_line.c | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/swaybar/bar.c b/swaybar/bar.c index 72c4be8f..44f4ee31 100644 --- 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 index ff668c9c..5b131aee 100644 --- 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); } |