提交 a0601dc1 编写于 作者: M Michael Haggerty 提交者: Junio C Hamano

absolute_path(): reject the empty string

Signed-off-by: NMichael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: NJunio C Hamano <gitster@pobox.com>
上级 17264bcc
...@@ -123,7 +123,9 @@ const char *absolute_path(const char *path) ...@@ -123,7 +123,9 @@ const char *absolute_path(const char *path)
{ {
static char buf[PATH_MAX + 1]; static char buf[PATH_MAX + 1];
if (is_absolute_path(path)) { if (!*path) {
die("The empty string is not a valid path");
} else if (is_absolute_path(path)) {
if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX) if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX)
die("Too long path: %.*s", 60, path); die("Too long path: %.*s", 60, path);
} else { } else {
......
...@@ -140,7 +140,7 @@ test_expect_success 'strip_path_suffix' ' ...@@ -140,7 +140,7 @@ test_expect_success 'strip_path_suffix' '
c:/msysgit/libexec//git-core libexec/git-core) c:/msysgit/libexec//git-core libexec/git-core)
' '
test_expect_failure 'absolute path rejects the empty string' ' test_expect_success 'absolute path rejects the empty string' '
test_must_fail test-path-utils absolute_path "" test_must_fail test-path-utils absolute_path ""
' '
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册