mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vschannel: fix net segfault on Windows (#5587)
This commit is contained in:
parent
3fed6ca050
commit
7ea77a0047
2
thirdparty/vschannel/vschannel.c
vendored
2
thirdparty/vschannel/vschannel.c
vendored
@ -279,7 +279,7 @@ static INT connect_to_server(TlsContext *tls_ctx, LPWSTR host, INT port_number)
|
|||||||
WCHAR service_name[10];
|
WCHAR service_name[10];
|
||||||
int res = wsprintf(service_name, L"%d", port_number);
|
int res = wsprintf(service_name, L"%d", port_number);
|
||||||
|
|
||||||
if(WSAConnectByNameA(Socket,connect_name, service_name, &local_address_length,
|
if(WSAConnectByNameW(Socket,connect_name, service_name, &local_address_length,
|
||||||
&local_address, &remote_address_length, &remote_address, &tv, NULL) == SOCKET_ERROR) {
|
&local_address, &remote_address_length, &remote_address, &tv, NULL) == SOCKET_ERROR) {
|
||||||
wprintf(L"Error %d connecting to \"%s\" (%s)\n",
|
wprintf(L"Error %d connecting to \"%s\" (%s)\n",
|
||||||
WSAGetLastError(),
|
WSAGetLastError(),
|
||||||
|
Loading…
Reference in New Issue
Block a user