Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions uvloop/handles/process.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ cdef class UVProcess(UVHandle):
self._finish_init()

os_close(self._errpipe_write)
self._errpipe_write = -1
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the write_pipe can be closed again sometimes:

try:
os_close(self._errpipe_write)
except OSError:
# Might be already closed
pass

if another thread allocates a file descriptor in this time then instead of raising OSError here the fd will be closed incorrectly


if preexec_fn is not None:
errpipe_data = bytearray()
Expand Down