Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-09-09 23:54:01 +0400
committerJunio C Hamano <gitster@pobox.com>2014-09-09 23:54:02 +0400
commit27fbcf8267ecc484cafdbfe84a3aaf2f373f3e2a (patch)
tree56490341d40640c3ae1b0880d88f1d053862616e /builtin/clone.c
parenta75e759e595bf79d69841e6822784164da54ac23 (diff)
parent50b6773287503cb76d1f4020245bbd119c410961 (diff)
Merge branch 'sb/plug-leaks'
* sb/plug-leaks: clone.c: don't leak memory in cmd_clone remote.c: don't leak the base branch name in format_tracking_info
Diffstat (limited to 'builtin/clone.c')
-rw-r--r--builtin/clone.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin/clone.c b/builtin/clone.c
index bbd169ceb4..dd4092b050 100644
--- a/builtin/clone.c
+++ b/builtin/clone.c
@@ -1004,5 +1004,7 @@ int cmd_clone(int argc, const char **argv, const char *prefix)
strbuf_release(&key);
strbuf_release(&value);
junk_mode = JUNK_LEAVE_ALL;
+
+ free(refspec);
return err;
}