1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

macos,bsd: handle missing /dev/null in chroot env (#4689)

Co-authored-by: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
Andrey 2025-02-04 22:43:18 +02:00 committed by GitHub
parent 23632e9104
commit 51477bc711
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -280,7 +280,7 @@ static int uv__async_start(uv_loop_t* loop) {
* thus we create one for that, but this fd will not be actually used,
* it's just a placeholder and magic number which is going to be closed
* during the cleanup, as other FDs. */
err = uv__open_cloexec("/dev/null", O_RDONLY);
err = uv__open_cloexec("/", O_RDONLY);
if (err < 0)
return err;