git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Fix bad usage of mkpath in builtin-branch.sh
@ 2006-10-24  1:59 Lars Hjemli
  2006-10-24  6:46 ` Junio C Hamano
  0 siblings, 1 reply; 7+ messages in thread
From: Lars Hjemli @ 2006-10-24  1:59 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

When checking if a branch start point referred to a commit-object,
the result of mkpath() was used as argument to get_sha1(), which
didn't work out as planned.

Now it's xstrdup'd first.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
---
 builtin-branch.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/builtin-branch.c b/builtin-branch.c
index ffc2db0..f86bf68 100755
--- a/builtin-branch.c
+++ b/builtin-branch.c
@@ -125,6 +125,7 @@ static void create_branch(const char *na
 	struct ref_lock *lock;
 	unsigned char sha1[20];
 	char ref[PATH_MAX], msg[PATH_MAX + 20];
+	const char *commitref;
 
 	snprintf(ref, sizeof ref, "refs/heads/%s", name);
 	if (check_ref_format(ref))
@@ -137,8 +138,10 @@ static void create_branch(const char *na
 			die("Cannot force update the current branch.");
 	}
 
-	if (get_sha1(mkpath("%s^0", start), sha1))
+	commitref = xstrdup(mkpath("%s^0", start));
+	if (get_sha1(commitref, sha1))
 		die("Not a valid branch point: '%s'.", start);
+	free(commitref);
 
 	lock = lock_any_ref_for_update(ref, NULL);
 	if (!lock)
-- 
1.4.3.1.ga4cc-dirty

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-10-25 22:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-24  1:59 [PATCH] Fix bad usage of mkpath in builtin-branch.sh Lars Hjemli
2006-10-24  6:46 ` Junio C Hamano
2006-10-24 11:38   ` Petr Baudis
2006-10-25  4:00     ` Junio C Hamano
2006-10-25  4:46       ` Junio C Hamano
2006-10-25 22:43         ` Petr Baudis
2006-10-25 22:51           ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).