From 2275df911220b4ae3525014fc711c7e467fcf69f Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Fri, 16 Apr 2010 16:54:55 +0300 Subject: [PATCH] Win32: handle WSAEINTR correctly, should fix #3101 --- src/network/io.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/network/io.c b/src/network/io.c index bd15180d2f..bb9dc0848f 100644 --- a/src/network/io.c +++ b/src/network/io.c @@ -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; -- 2.39.5