Fix: compat poll: add missing empty revents checks
[lttng-tools.git] / src / bin / lttng-sessiond / jul-thread.c
index 1630fc55348b983a509432f6fe1d748eb92e683d..d6f07d8693c4fc7de0c9c6859470025e2f50c0be 100644 (file)
@@ -307,6 +307,11 @@ restart:
                        revents = LTTNG_POLL_GETEV(&events, i);
                        pollfd = LTTNG_POLL_GETFD(&events, i);
 
+                       if (!revents) {
+                               /* No activity for this FD (poll implementation). */
+                               continue;
+                       }
+
                        /* Thread quit pipe has been closed. Killing thread. */
                        ret = sessiond_check_thread_quit_pipe(pollfd, revents);
                        if (ret) {
This page took 0.022834 seconds and 4 git commands to generate.