1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Fix WSAStartup return value check.

SOCKET_ERROR was not a valid return value.
WSAStartup returns 0 on success, so check that instead.
This commit is contained in:
Peter Vaskovic
2014-05-15 02:54:37 +02:00
committed by Paul Bakker
parent f7ced9232b
commit 7015de7e67

View File

@ -146,7 +146,7 @@ static int net_prepare( void )
if( wsa_init_done == 0 )
{
if( WSAStartup( MAKEWORD(2,0), &wsaData ) == SOCKET_ERROR )
if( WSAStartup( MAKEWORD(2,0), &wsaData ) != 0 )
return( POLARSSL_ERR_NET_SOCKET_FAILED );
wsa_init_done = 1;