commit - d34b633ebd3cc55febd0e0ec30d99459d7c3980e
commit + f0207f6a4f16fab481f483d0db43ed50ca670e7e
blob - 6535a4bdb0b33f77b5e762d754afffbf8ae5d25e
blob + 9ff54863f6b41daa7b9bf2b9cb46bf28b42ffe52
--- got/got.c
+++ got/got.c
const char *path_prefix = "";
const char *branch_name = GOT_REF_HEAD;
char *commit_id_str = NULL;
- char *cwd = NULL, *path = NULL;
+ char *cwd = NULL;
int ch, same_path_prefix, allow_nonempty = 0;
struct got_pathlist_head paths;
struct got_checkout_progress_arg cpa;
#endif
if (argc == 1) {
char *base, *dotgit;
+ const char *path;
repo_path = realpath(argv[0], NULL);
if (repo_path == NULL)
return got_error_from_errno2("realpath", argv[0]);
goto done;
}
if (path_prefix[0])
- path = strdup(path_prefix);
+ path = path_prefix;
else
- path = strdup(repo_path);
- if (path == NULL) {
- error = got_error_from_errno("strdup");
- goto done;
- }
- base = basename(path);
- if (base == NULL) {
- error = got_error_from_errno2("basename", path);
+ path = repo_path;
+ error = got_path_basename(&base, path);
+ if (error)
goto done;
- }
dotgit = strstr(base, ".git");
if (dotgit)
*dotgit = '\0';
if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
error = got_error_from_errno("asprintf");
+ free(base);
goto done;
}
+ free(base);
} else if (argc == 2) {
repo_path = realpath(argv[0], NULL);
if (repo_path == NULL) {
free(repo_path);
free(worktree_path);
free(cwd);
- free(path);
return error;
}