Commit 4339a26c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont Committed by Jean-Baptiste Kempf

Win32: handle WSAEINTR correctly, should fix #3101

(cherry picked from commit 2275df911220b4ae3525014fc711c7e467fcf69f)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 03542db3
......@@ -328,6 +328,7 @@ net_Read (vlc_object_t *restrict p_this, int fd, const v_socket_t *vs,
switch (WSAGetLastError ())
{
case WSAEWOULDBLOCK:
case WSAEINTR:
/* only happens with vs != NULL (TLS) - not really an error */
continue;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment