If connection fails the socket descriptor is not closed causing a leak. Signed-off-by: Frediano Ziglio <fziglio@xxxxxxxxxx> --- src/udscs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/udscs.c b/src/udscs.c index 62abc97..7fe74b9 100644 --- a/src/udscs.c +++ b/src/udscs.c @@ -119,6 +119,7 @@ struct udscs_connection *udscs_connect(const char *socketname, if (conn->debug) { syslog(LOG_DEBUG, "connect %s: %m", socketname); } + close(conn->fd); g_free(conn); return NULL; } -- 2.17.2 _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/spice-devel