diff options
author | René Scharfe <l.s.r@web.de> | 2017-01-26 18:54:23 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-01-27 10:18:15 -0800 |
commit | 0aaad415bcbdd7ccdfbb27eafb2f5926540455fa (patch) | |
tree | a7a9c1cf3f2211192638a2e56c27435aaec1cc8c /builtin | |
parent | b1edb40f255a900154a9e7d34dcb9e0219427bd9 (diff) | |
download | git-0aaad415bcbdd7ccdfbb27eafb2f5926540455fa.tar.gz git-0aaad415bcbdd7ccdfbb27eafb2f5926540455fa.tar.xz |
use absolute_pathdup()
Apply the semantic patch for converting callers that duplicate the
result of absolute_path() to call absolute_pathdup() instead, which
avoids an extra string copy to a static buffer.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/clone.c | 4 | ||||
-rw-r--r-- | builtin/submodule--helper.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/builtin/clone.c b/builtin/clone.c index a35d62293..e4c1b3257 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -161,7 +161,7 @@ static char *get_repo_path(const char *repo, int *is_bundle) strbuf_addstr(&path, repo); raw = get_repo_path_1(&path, is_bundle); - canon = raw ? xstrdup(absolute_path(raw)) : NULL; + canon = raw ? absolute_pathdup(raw) : NULL; strbuf_release(&path); return canon; } @@ -892,7 +892,7 @@ int cmd_clone(int argc, const char **argv, const char *prefix) path = get_repo_path(repo_name, &is_bundle); if (path) - repo = xstrdup(absolute_path(repo_name)); + repo = absolute_pathdup(repo_name); else if (!strchr(repo_name, ':')) die(_("repository '%s' does not exist"), repo_name); else diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c index dbe5699fe..c80f11352 100644 --- a/builtin/submodule--helper.c +++ b/builtin/submodule--helper.c @@ -515,7 +515,7 @@ static int module_clone(int argc, const char **argv, const char *prefix) module_clone_options); strbuf_addf(&sb, "%s/modules/%s", get_git_dir(), name); - sm_gitdir = xstrdup(absolute_path(sb.buf)); + sm_gitdir = absolute_pathdup(sb.buf); strbuf_reset(&sb); if (!is_absolute_path(path)) { |