зеркало из https://github.com/microsoft/git.git
real_path(): reject the empty string
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
a5c45218b6
Коммит
3efe5d1d32
|
@ -35,6 +35,9 @@ const char *real_path(const char *path)
|
|||
if (path == buf || path == next_buf)
|
||||
return path;
|
||||
|
||||
if (!*path)
|
||||
die("The empty string is not a valid path");
|
||||
|
||||
if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX)
|
||||
die ("Too long path: %.*s", 60, path);
|
||||
|
||||
|
|
|
@ -144,7 +144,7 @@ test_expect_success 'absolute path rejects the empty string' '
|
|||
test_must_fail test-path-utils absolute_path ""
|
||||
'
|
||||
|
||||
test_expect_failure 'real path rejects the empty string' '
|
||||
test_expect_success 'real path rejects the empty string' '
|
||||
test_must_fail test-path-utils real_path ""
|
||||
'
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче