From 8a155a044b2251f53e6c0524c4a4eeaac53dc31f Mon Sep 17 00:00:00 2001 From: Ben Straub Date: Fri, 27 Jul 2012 11:49:34 -0700 Subject: [PATCH] Fix mismatched git_branch_create args. --- src/clone.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/clone.c b/src/clone.c index f5421b56c..22e8c0eee 100644 --- a/src/clone.c +++ b/src/clone.c @@ -37,7 +37,7 @@ struct HeadInfo { static int create_tracking_branch(git_repository *repo, const git_oid *target, const char *name) { git_object *head_obj = NULL; - git_oid branch_oid; + git_reference *branch_ref; int retcode = GIT_ERROR; /* Find the target commit */ @@ -45,7 +45,8 @@ static int create_tracking_branch(git_repository *repo, const git_oid *target, c return GIT_ERROR; /* Create the new branch */ - if (!git_branch_create(&branch_oid, repo, name, head_obj, 0)) { + if (!git_branch_create(&branch_ref, repo, name, head_obj, 0)) { + git_reference_free(branch_ref); /* Set up tracking */ git_config *cfg; if (!git_repository_config(&cfg, repo)) { @@ -94,7 +95,7 @@ static int update_head_to_new_branch(git_repository *repo, const git_oid *target git_reference *head; if (!git_reference_lookup(&head, repo, GIT_HEAD_FILE)) { git_buf targetbuf = GIT_BUF_INIT; - if (!git_buf_printf(&targetbuf, "refs/heads/%s", name) && + if (!git_buf_printf(&targetbuf, "refs/heads/%s", name) && /* TODO: "refs/heads" constant? */ !git_reference_set_target(head, git_buf_cstr(&targetbuf))) { /* Read the tree into the index */ git_commit *commit;