summaryrefslogtreecommitdiff
path: root/src/netops.c
diff options
context:
space:
mode:
authorPhilip Kelley <phkelley@hotmail.com>2013-01-25 22:43:52 -0500
committerPhilip Kelley <phkelley@hotmail.com>2013-01-25 22:43:52 -0500
commitcfc39f5078ecea864d78d349264eb259d4604363 (patch)
treea0277845b0a5e2a6279b03306ca176ba72b936f7 /src/netops.c
parentae386101d249f77039f5b00ada190132acad90a8 (diff)
downloadlibgit2-cfc39f5078ecea864d78d349264eb259d4604363.tar.gz
Fix 3 memory leaks
Diffstat (limited to 'src/netops.c')
-rw-r--r--src/netops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/netops.c b/src/netops.c
index fe95f2ca7..59e6bda1e 100644
--- a/src/netops.c
+++ b/src/netops.c
@@ -487,6 +487,7 @@ int gitno_connect(gitno_socket *s_out, const char *host, const char *port, int f
/* Oops, we couldn't connect to any address */
if (s == INVALID_SOCKET && p == NULL) {
giterr_set(GITERR_OS, "Failed to connect to %s", host);
+ p_freeaddrinfo(info);
return -1;
}