sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit ac3be29517ead2188e43ab1bdb8de31f17633c94
parent bac65078a28323ced0d25d7decea783c157028d4
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon,  9 Apr 2018 08:07:54 -0400

Fix some more bugs

Diffstat:
Mswaybar/i3bar.c | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/swaybar/i3bar.c b/swaybar/i3bar.c @@ -113,8 +113,9 @@ bool i3bar_handle_readable(struct status_line *status) { char *cur = &state->buffer[state->buffer_index]; ssize_t n = read(status->read_fd, cur, state->buffer_size - state->buffer_index); - if (n == 0) { - return 0; + if (n == -1) { + status_error(status, "[failed to read from status command]"); + return false; } if (n == (ssize_t)(state->buffer_size - state->buffer_index)) { @@ -123,7 +124,7 @@ bool i3bar_handle_readable(struct status_line *status) { if (!new_buffer) { free(state->buffer); status_error(status, "[failed to allocate buffer]"); - return -1; + return true; } state->current_node += new_buffer - state->buffer; cur += new_buffer - state->buffer;