diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-04-22 15:45:07 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-04-22 15:45:08 -0700 |
commit | 3f80d16c1c0db9834806e3c430197a8d3442094c (patch) | |
tree | 1ecbc8506dc20a6129880dfd46deaeea95212d6d /setup.c | |
parent | 0709261a83f0a386c6415d889a6e2617e62db710 (diff) | |
parent | 24041d6be54d89b5fb0b2bbf70df04bbbff6ba9e (diff) | |
download | git-3f80d16c1c0db9834806e3c430197a8d3442094c.tar.gz |
Merge branch 'jc/xstrfmt-null-with-prec-0'
* jc/xstrfmt-null-with-prec-0:
setup.c: do not feed NULL to "%.*s" even with precision 0
Diffstat (limited to 'setup.c')
-rw-r--r-- | setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -102,7 +102,7 @@ char *prefix_path_gently(const char *prefix, int len, return NULL; } } else { - sanitized = xstrfmt("%.*s%s", len, prefix, path); + sanitized = xstrfmt("%.*s%s", len, len ? prefix : "", path); if (remaining_prefix) *remaining_prefix = len; if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) { |