1 .. title:: clang-tidy - android-cloexec-inotify-init1
3 android-cloexec-inotify-init1
4 =============================
6 ``inotify_init1()`` should include ``IN_CLOEXEC`` in its type argument to avoid the
7 file descriptor leakage. Without this flag, an opened sensitive file would
8 remain open across a fork+exec to a lower-privileged SELinux domain.
14 inotify_init1(IN_NONBLOCK);
18 inotify_init1(IN_NONBLOCK | IN_CLOEXEC);