Merge branch 'rs/strbuf-add-real-path' into maint
An helper function to make it easier to append the result from real_path() to a strbuf has been added. * rs/strbuf-add-real-path: strbuf: add strbuf_add_real_path() cocci: use ALLOC_ARRAY
This commit is contained in:
2
setup.c
2
setup.c
@ -254,7 +254,7 @@ int get_common_dir_noenv(struct strbuf *sb, const char *gitdir)
|
||||
if (!is_absolute_path(data.buf))
|
||||
strbuf_addf(&path, "%s/", gitdir);
|
||||
strbuf_addbuf(&path, &data);
|
||||
strbuf_addstr(sb, real_path(path.buf));
|
||||
strbuf_add_real_path(sb, path.buf);
|
||||
ret = 1;
|
||||
} else {
|
||||
strbuf_addstr(sb, gitdir);
|
||||
|
Reference in New Issue
Block a user