From 8bd1c19e767c85f4e2cc035068bb3146247e27fb Mon Sep 17 00:00:00 2001 From: Bob Kuo Date: Sat, 16 Jan 2016 19:39:24 -0600 Subject: [PATCH] Free allocated pointer to curl stream on error --- src/curl_stream.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/curl_stream.c b/src/curl_stream.c index 798bd5a52..9f8b202a8 100644 --- a/src/curl_stream.c +++ b/src/curl_stream.c @@ -207,11 +207,14 @@ int git_curl_stream_new(git_stream **out, const char *host, const char *port) handle = curl_easy_init(); if (handle == NULL) { giterr_set(GITERR_NET, "failed to create curl handle"); + git__free(st); return -1; } - if ((error = git__strtol32(&iport, port, NULL, 10)) < 0) + if ((error = git__strtol32(&iport, port, NULL, 10)) < 0) { + git__free(st); return error; + } curl_easy_setopt(handle, CURLOPT_URL, host); curl_easy_setopt(handle, CURLOPT_ERRORBUFFER, st->curl_error);