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>
This commit is contained in:

committed by
Junio C Hamano

parent
b1edb40f25
commit
0aaad415bc
@ -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
|
||||
|
Reference in New Issue
Block a user