[vlc-commits] commit: Win32: handle WSAEINTR correctly, should fix #3101 ( Rémi Denis-Courmont )

git at videolan.org git at videolan.org
Fri Apr 16 15:55:44 CEST 2010


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri Apr 16 16:54:55 2010 +0300| [2275df911220b4ae3525014fc711c7e467fcf69f] | committer: Rémi Denis-Courmont 

Win32: handle WSAEINTR correctly, should fix #3101

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2275df911220b4ae3525014fc711c7e467fcf69f
---

 src/network/io.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/src/network/io.c b/src/network/io.c
index bd15180..bb9dc08 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;
 



More information about the vlc-commits mailing list