diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-02-02 22:36:55 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-02-02 22:36:55 +0100 |
commit | 6f1c08bdb75b37ad30103f0f12339780fdc004e2 (patch) | |
tree | 3a6909ffaaa512519c3f6f6e7a11f0956276bcd1 /abspath.c | |
parent | Merge branch 'js/unzip-in-usr-bin-workaround' (diff) | |
parent | use absolute_pathdup() (diff) | |
download | git-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.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 |