http://bugs.winehq.org/show_bug.cgi?id=17907
Matias Colli matiasbsd@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |matiasbsd@gmail.com
--- Comment #5 from Matias Colli matiasbsd@gmail.com 2012-05-02 20:52:10 CDT --- Better solutions that comment socket.c in Makefile.in is change the dlls/ws2_32/tests/sock.c as see bellow:
- static int do_synchronous_recvfrom ( SOCKET s, char *buf, int buflen,int flags,struct sockaddr *from, socklen_t *fromlen, int recvlen ) + static int do_synchronous_recvfrom ( SOCKET s, char *buf, int buflen,int flags,struct sockaddr *from, int *fromlen, int recvlen )
and so:
- socklen_t fromLen = sizeof(mem->addr); + int fromLen = sizeof(mem->addr);
Matias Colli