summaryrefslogtreecommitdiffstats
path: root/abspath.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-02-02 22:36:55 +0100
committerJunio C Hamano <gitster@pobox.com>2017-02-02 22:36:55 +0100
commit6f1c08bdb75b37ad30103f0f12339780fdc004e2 (patch)
tree3a6909ffaaa512519c3f6f6e7a11f0956276bcd1 /abspath.c
parentMerge branch 'js/unzip-in-usr-bin-workaround' (diff)
parentuse absolute_pathdup() (diff)
downloadgit-6f1c08bdb75b37ad30103f0f12339780fdc004e2.tar.xz
git-6f1c08bdb75b37ad30103f0f12339780fdc004e2.zip
Merge branch 'rs/absolute-pathdup'
Code cleanup. * rs/absolute-pathdup: use absolute_pathdup() abspath: add absolute_pathdup()
Diffstat (limited to 'abspath.c')
-rw-r--r--abspath.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/abspath.c b/abspath.c
index fce40fddcc..2f0c26e0e2 100644
--- a/abspath.c
+++ b/abspath.c
@@ -239,6 +239,13 @@ const char *absolute_path(const char *path)
return sb.buf;
}
+char *absolute_pathdup(const char *path)
+{
+ struct strbuf sb = STRBUF_INIT;
+ strbuf_add_absolute_path(&sb, path);
+ return strbuf_detach(&sb, NULL);
+}
+
/*
* Unlike prefix_path, this should be used if the named file does
* not have to interact with index entry; i.e. name of a random file