From: Lennart Poettering Date: Tue, 17 Dec 2013 02:14:20 +0000 (+0100) Subject: activate: fix error checking on epoll_ctl() X-Git-Tag: submit/kdbus-integration/20140207.094352~525 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=603938e0a9b5379984d7397e3cf81683c0037a53;p=platform%2Fupstream%2Fsystemd.git activate: fix error checking on epoll_ctl() --- diff --git a/src/activate/activate.c b/src/activate/activate.c index d73c16e..cf545d6 100644 --- a/src/activate/activate.c +++ b/src/activate/activate.c @@ -51,10 +51,12 @@ static int add_epoll(int epoll_fd, int fd) { ev.data.fd = fd; r = epoll_ctl(epoll_fd, EPOLL_CTL_ADD, fd, &ev); - if (r < 0) - log_error("Failed to add event on epoll fd:%d for fd:%d: %m", - epoll_fd, fd); - return -errno; + if (r < 0) { + log_error("Failed to add event on epoll fd:%d for fd:%d: %m", epoll_fd, fd); + return -errno; + } + + return 0; } static int make_socket_fd(const char* address, int flags) {