- Fix a broken call to WSPBind that I missed in r47378

svn path=/trunk/; revision=47380
This commit is contained in:
Cameron Gutman 2010-05-28 05:15:42 +00:00
parent d36292eecf
commit d30c42f367

View file

@ -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 */