]> git.sesse.net Git - vlc/commitdiff
Win32: handle WSAEINTR correctly, should fix #3101
authorRémi Denis-Courmont <remi@remlab.net>
Fri, 16 Apr 2010 13:54:55 +0000 (16:54 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Fri, 16 Apr 2010 13:55:37 +0000 (16:55 +0300)
src/network/io.c

index bd15180d2fef9d9f980e0dfbe4bd6537281a9e06..bb9dc0848f6accbed3ce63d4f975b204866b6897 100644 (file)
@@ -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;