From e1ce5249e52e9c5271727d7e2ef5bba4c45277b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Mon, 18 Nov 2013 21:40:19 +0100 Subject: [PATCH] netops: fix leak --- src/netops.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/netops.c b/src/netops.c index 15ed0fc26..ad27d84cf 100644 --- a/src/netops.c +++ b/src/netops.c @@ -632,10 +632,13 @@ int gitno_connection_data_from_url( size_t suffixlen = service_suffix ? strlen(service_suffix) : 0; if (suffixlen && - !memcmp(path + pathlen - suffixlen, service_suffix, suffixlen)) + !memcmp(path + pathlen - suffixlen, service_suffix, suffixlen)) { + git__free(data->path); data->path = git__strndup(path, pathlen - suffixlen); - else + } else { + git__free(data->path); data->path = git__strdup(path); + } /* Check for errors in the resulting data */ if (original_host && url[0] != '/' && strcmp(original_host, data->host)) {