Bug: https://bugs.freedesktop.org/show_bug.cgi?id=73689
Reviewed-by: Ralf Habacker
[add <dbus/dbus-sysdeps-unix.h> which is now required for
_dbus_fd_set_close_on_exec -smcv]
#include <dbus/dbus-internals.h>
#include <dbus/dbus-list.h>
+#include <dbus/dbus-sysdeps-unix.h>
#include <dbus/dbus-watch.h>
#include "dir-watch.h"
_dbus_warn ("Cannot initialize inotify\n");
goto out;
}
+
+ /* In the inotify_init1 case this is unnecessary but harmless,
+ * in the other cases it's necessary */
+ _dbus_fd_set_close_on_exec (inotify_fd);
+
loop = bus_context_get_loop (context);
_dbus_loop_ref (loop);