1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 04:23:51 +00:00

Fix incorrect handling of ipv4 case

This commit is contained in:
Leander Beernaert 2020-04-09 12:27:54 +02:00
parent 4201ebb28d
commit 010376518f

View File

@ -317,9 +317,11 @@ bool ListenSocket::Listen( int port, int backlog )
// with the IPV4 protocol
hints.ai_family = AF_INET;
if( getaddrinfo( nullptr, portbuf, &hints, &res ) != 0 ) return false;
}
m_sock = socket( res->ai_family, res->ai_socktype, res->ai_protocol );
if (m_sock == -1) {
m_sock = socket( res->ai_family, res->ai_socktype, res->ai_protocol );
if (m_sock == -1) {
return false;
}
} else {
return false;
}
#if defined _WIN32 || defined __CYGWIN__