]> git.meshlink.io Git - meshlink/commitdiff
Fix a socket fd leak.
authorGuus Sliepen <guus@meshlink.io>
Mon, 1 Feb 2021 13:07:54 +0000 (14:07 +0100)
committerGuus Sliepen <guus@meshlink.io>
Mon, 1 Feb 2021 13:07:54 +0000 (14:07 +0100)
Due to a logic error, whenever an interface went down and up, one or
more socket fds could be leaked. A long running process on a roaming
device or an unstable network could therefore run out of fds.

src/net.c

index 8bec6b67f52af5e52c671d94cc26ffad425244aa..ce999cba00aebe133d3bb41a36c1d5b1a298ff57 100644 (file)
--- a/src/net.c
+++ b/src/net.c
@@ -700,7 +700,7 @@ void retry(meshlink_handle_t *mesh) {
 
                int sock = socket(sa.sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
 
-               if(sock != -1) {
+               if(sock == -1) {
                        continue;
                }