]> git.ipfire.org Git - thirdparty/curl.git/commit
select: avoid returning an error on EINTR from select() or poll()
authorAntoine Pitrou <antoine@python.org>
Thu, 18 May 2023 19:39:05 +0000 (21:39 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 19 May 2023 14:16:26 +0000 (16:16 +0200)
commitd65321f93916e60f65b89d9bcb502341ea5c5939
tree6138c4b202df00666fae6753b4ac3ac79eb5aa03
parent5b4bcc6ede45dc560b6fe68671fd256032b738e9
select: avoid returning an error on EINTR from select() or poll()

This was already done for the poll() and select() calls
made directly from Curl_poll(), but was missed in
Curl_wait_ms(), which is called when there are no fds
to wait on.

Fixes #11135
Closes #11143
lib/select.c