Ralf Habacker (@rhabacker) commented about dlls/ws2_32/socket.c:
return -1; } params->unknown = 0;
- memcpy( ¶ms->addr, addr, len );
- if (addr->sa_family == AF_UNIX)
memset( ¶ms->addr, 0, len );
- memcpy( ¶ms->addr, addr, bind_len );
- if (unix_path)
Here a comment should be added, that in case of AF_UNIX sockets the unix path is appended as second string to `params->addr`.