treewide: make more file descriptors cloexec

Avoid file descriptor leakage into child processes by marking them `O_CLOEXEC`.
This commit is contained in:
Barnabás Pőcze 2025-10-28 20:03:13 +01:00 committed by Wim Taymans
parent 6ef23a1a9a
commit e5b741732d
9 changed files with 9 additions and 9 deletions

View file

@ -125,7 +125,7 @@ static void test_create(void)
unlink(temp);
listen_fd = socket(AF_UNIX, SOCK_STREAM, 0);
listen_fd = socket(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0);
spa_assert_se(listen_fd >= 0);
sockaddr.sun_family = AF_UNIX;