mirror of
https://github.com/swaywm/sway.git
synced 2024-12-28 07:56:31 +01:00
Merge pull request #3692 from ianyfan/swaybar
Fix crash and memory leak on bar termination
This commit is contained in:
commit
cdbf8e8b25
4 changed files with 13 additions and 15 deletions
|
@ -46,6 +46,8 @@ struct swaybar {
|
|||
#if HAVE_TRAY
|
||||
struct swaybar_tray *tray;
|
||||
#endif
|
||||
|
||||
bool running;
|
||||
};
|
||||
|
||||
struct swaybar_output {
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
#include <fcntl.h>
|
||||
#include <poll.h>
|
||||
#include <signal.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <sys/wait.h>
|
||||
|
@ -403,8 +404,7 @@ bool bar_setup(struct swaybar *bar, const char *socket_path) {
|
|||
static void display_in(int fd, short mask, void *data) {
|
||||
struct swaybar *bar = data;
|
||||
if (wl_display_dispatch(bar->display) == -1) {
|
||||
bar_teardown(bar);
|
||||
exit(0);
|
||||
bar->running = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -439,7 +439,7 @@ void bar_run(struct swaybar *bar) {
|
|||
loop_add_fd(bar->eventloop, bar->tray->fd, POLLIN, tray_in, bar->tray->bus);
|
||||
}
|
||||
#endif
|
||||
while (1) {
|
||||
while (bar->running) {
|
||||
errno = 0;
|
||||
if (wl_display_flush(bar->display) == -1 && errno != EAGAIN) {
|
||||
break;
|
||||
|
|
|
@ -11,13 +11,7 @@
|
|||
static struct swaybar swaybar;
|
||||
|
||||
void sig_handler(int signal) {
|
||||
bar_teardown(&swaybar);
|
||||
exit(0);
|
||||
}
|
||||
|
||||
void sway_terminate(int code) {
|
||||
bar_teardown(&swaybar);
|
||||
exit(code);
|
||||
swaybar.running = false;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
|
@ -93,8 +87,6 @@ int main(int argc, char **argv) {
|
|||
}
|
||||
}
|
||||
|
||||
signal(SIGTERM, sig_handler);
|
||||
|
||||
if (!bar_setup(&swaybar, socket_path)) {
|
||||
free(socket_path);
|
||||
return 1;
|
||||
|
@ -102,6 +94,10 @@ int main(int argc, char **argv) {
|
|||
|
||||
free(socket_path);
|
||||
|
||||
signal(SIGINT, sig_handler);
|
||||
signal(SIGTERM, sig_handler);
|
||||
|
||||
swaybar.running = true;
|
||||
bar_run(&swaybar);
|
||||
bar_teardown(&swaybar);
|
||||
return 0;
|
||||
|
|
|
@ -189,9 +189,9 @@ bool init_host(struct swaybar_host *host, char *protocol,
|
|||
goto error;
|
||||
}
|
||||
|
||||
sd_bus_slot_set_floating(reg_slot, 1);
|
||||
sd_bus_slot_set_floating(unreg_slot, 1);
|
||||
sd_bus_slot_set_floating(watcher_slot, 1);
|
||||
sd_bus_slot_set_floating(reg_slot, 0);
|
||||
sd_bus_slot_set_floating(unreg_slot, 0);
|
||||
sd_bus_slot_set_floating(watcher_slot, 0);
|
||||
|
||||
sway_log(SWAY_DEBUG, "Registered %s", host->service);
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue