Close socket on error

Suggested-by: barry-ran

<https://github.com/Genymobile/scrcpy/issues/607>
This commit is contained in:
Romain Vimont 2019-06-20 12:15:45 +02:00
parent bfb3f0842f
commit 91ecb4f218

View file

@ -155,6 +155,7 @@ connect_and_read_byte(uint16_t port) {
// is not listening, so read one byte to detect a working connection
if (net_recv(socket, &byte, 1) != 1) {
// the server is not listening yet behind the adb tunnel
net_close(socket);
return INVALID_SOCKET;
}
return socket;