mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[MSAFD]
- Fix a broken call to WSPBind that I missed in r47378 svn path=/trunk/; revision=47380
This commit is contained in:
parent
d36292eecf
commit
d30c42f367
1 changed files with 2 additions and 1 deletions
|
@ -1416,7 +1416,8 @@ WSPConnect(SOCKET Handle,
|
|||
BindAddress,
|
||||
&BindAddressLength);
|
||||
/* Bind it */
|
||||
WSPBind(Handle, BindAddress, BindAddressLength, NULL);
|
||||
if (WSPBind(Handle, BindAddress, BindAddressLength, lpErrno) == SOCKET_ERROR)
|
||||
return INVALID_SOCKET;
|
||||
}
|
||||
|
||||
/* Set the Connect Data */
|
||||
|
|
Loading…
Reference in a new issue