Commit cefea7d5 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

WinRT: we don't use the WinsockRT APIs

parent 5d26efca
...@@ -269,15 +269,6 @@ net_Read (vlc_object_t *restrict p_this, int fd, ...@@ -269,15 +269,6 @@ net_Read (vlc_object_t *restrict p_this, int fd,
ufd[1].events = POLLIN; ufd[1].events = POLLIN;
size_t i_total = 0; size_t i_total = 0;
#if VLC_WINSTORE_APP
/* With winrtsock winsocks emulation library, the first call to read()
* before poll() starts an asynchronous transfer and returns 0.
* Always call poll() first.
*
* See bug #8972 for details.
*/
goto do_poll;
#endif
do do
{ {
#ifdef _WIN32 #ifdef _WIN32
......
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