aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-08-16 12:41:12 -0700
committerJunio C Hamano <gitster@pobox.com>2011-08-16 12:41:12 -0700
commita1ee40f3a2c626ad2b66e9fadf9a4064c3c5118c (patch)
tree18cfc2f3bb0537e52a6bb8ce04a68566bd6db3f0
parent7aa50897dda0360b9cbbe23e723a5aee461e1d71 (diff)
parent25d33546d474c7c28b72013c262fc23337cb3b21 (diff)
downloadgit-a1ee40f3a2c626ad2b66e9fadf9a4064c3c5118c.tar.gz
git-a1ee40f3a2c626ad2b66e9fadf9a4064c3c5118c.tar.xz
Merge branch 'jc/checkout-reflog-fix' into maint
* jc/checkout-reflog-fix: checkout: do not write bogus reflog entry out
-rw-r--r--builtin/checkout.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/builtin/checkout.c b/builtin/checkout.c
index af1e7b579..ca855d716 100644
--- a/builtin/checkout.c
+++ b/builtin/checkout.c
@@ -715,10 +715,12 @@ static int switch_branches(struct checkout_opts *opts, struct branch_info *new)
unsigned char rev[20];
int flag;
memset(&old, 0, sizeof(old));
- old.path = resolve_ref("HEAD", rev, 0, &flag);
+ old.path = xstrdup(resolve_ref("HEAD", rev, 0, &flag));
old.commit = lookup_commit_reference_gently(rev, 1);
- if (!(flag & REF_ISSYMREF))
+ if (!(flag & REF_ISSYMREF)) {
+ free((char *)old.path);
old.path = NULL;
+ }
if (old.path && !prefixcmp(old.path, "refs/heads/"))
old.name = old.path + strlen("refs/heads/");
@@ -741,6 +743,7 @@ static int switch_branches(struct checkout_opts *opts, struct branch_info *new)
update_refs_for_switch(opts, &old, new);
ret = post_checkout_hook(old.commit, new->commit, 1);
+ free((char *)old.path);
return ret || opts->writeout_error;
}