1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-22 22:03:43 +03:00

sd-bus: cleanup bus_close_fds()

The safe_close() already checks the fd and returns -1.
This commit is contained in:
Namhyung Kim 2015-08-02 00:35:22 +09:00
parent 8d51633304
commit 0fd8d506f4

View File

@ -73,13 +73,9 @@ static void bus_close_fds(sd_bus *b) {
detach_io_events(b);
if (b->input_fd >= 0)
safe_close(b->input_fd);
if (b->output_fd >= 0 && b->output_fd != b->input_fd)
if (b->input_fd != b->output_fd)
safe_close(b->output_fd);
b->input_fd = b->output_fd = -1;
b->output_fd = b->input_fd = safe_close(b->input_fd);
}
static void bus_reset_queues(sd_bus *b) {