summaryrefslogtreecommitdiff
path: root/refs.c
diff options
context:
space:
mode:
authorMichael Haggerty <mhagger@alum.mit.edu>2012-04-26 22:27:00 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-05-03 20:15:35 (GMT)
commit5fa0441844b1d23e6a2a3c369651dc8c13712ef6 (patch)
tree709bbcd4c6201573a370205dfed6632d5b56fbce /refs.c
parent144e7090045a703c8f5d140474f202ba4f38ac9a (diff)
downloadgit-5fa0441844b1d23e6a2a3c369651dc8c13712ef6.zip
git-5fa0441844b1d23e6a2a3c369651dc8c13712ef6.tar.gz
git-5fa0441844b1d23e6a2a3c369651dc8c13712ef6.tar.bz2
find_containing_dir(): use strbuf in implementation of this function
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.c')
-rw-r--r--refs.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/refs.c b/refs.c
index 0d81b9e..623fb55 100644
--- a/refs.c
+++ b/refs.c
@@ -309,20 +309,21 @@ static struct ref_entry *search_for_subdir(struct ref_dir *dir,
static struct ref_dir *find_containing_dir(struct ref_dir *dir,
const char *refname, int mkdir)
{
- char *refname_copy = xstrdup(refname);
- char *slash;
- struct ref_entry *entry;
- for (slash = strchr(refname_copy, '/'); slash; slash = strchr(slash + 1, '/')) {
- char tmp = slash[1];
- slash[1] = '\0';
- entry = search_for_subdir(dir, refname_copy, mkdir);
- slash[1] = tmp;
+ struct strbuf dirname;
+ const char *slash;
+ strbuf_init(&dirname, PATH_MAX);
+ for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
+ struct ref_entry *entry;
+ strbuf_add(&dirname,
+ refname + dirname.len,
+ (slash + 1) - (refname + dirname.len));
+ entry = search_for_subdir(dir, dirname.buf, mkdir);
if (!entry)
break;
dir = &entry->u.subdir;
}
- free(refname_copy);
+ strbuf_release(&dirname);
return dir;
}