Skip to content

Commit 7a53753

Browse files
committed
fix misuse of prefix_path()
When DEFAULT_GIT_TEMPLATE_DIR is specified as a relative path, init-db made it relative to exec_path using prefix_path(), which is wrong. prefix_path() is about a file inside the work tree. There was a similar misuse in config.c that takes relative ETC_GITCONFIG path. A convenience function prefix_filename() can concatenate two paths to form a path that points at somewhere outside the work tree. Use it in these codepaths instead. Signed-off-by: Junio C Hamano <[email protected]>
1 parent d0b8c9e commit 7a53753

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

builtin-init-db.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,7 @@ static void copy_templates(const char *git_dir, int len, const char *template_di
142142
template_dir = DEFAULT_GIT_TEMPLATE_DIR;
143143
if (!is_absolute_path(template_dir)) {
144144
const char *exec_path = git_exec_path();
145-
template_dir = prefix_path(exec_path, strlen(exec_path),
146-
template_dir);
145+
template_dir = prefix_filename(exec_path, strlen(exec_path), template_dir);
147146
}
148147
}
149148
strcpy(template_path, template_dir);

config.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -485,8 +485,9 @@ const char *git_etc_gitconfig(void)
485485
if (!is_absolute_path(system_wide)) {
486486
/* interpret path relative to exec-dir */
487487
const char *exec_path = git_exec_path();
488-
system_wide = prefix_path(exec_path, strlen(exec_path),
489-
system_wide);
488+
system_wide = strdup(prefix_filename(exec_path,
489+
strlen(exec_path),
490+
system_wide));
490491
}
491492
}
492493
return system_wide;

0 commit comments

Comments
 (0)