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:
Michael Haggerty 2012-09-07 00:41:01 +02:00 коммит произвёл Junio C Hamano
Родитель a5c45218b6
Коммит 3efe5d1d32
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -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 ""
'