Skip to content

Commit

Permalink
absolute_path(): reject the empty string
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
mhagger authored and gitster committed Sep 6, 2012
1 parent 17264bc commit a0601dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion abspath.c
Expand Up @@ -123,7 +123,9 @@ const char *absolute_path(const char *path)
{
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)
die("Too long path: %.*s", 60, path);
} else {
Expand Down
2 changes: 1 addition & 1 deletion t/t0060-path-utils.sh
Expand Up @@ -140,7 +140,7 @@ test_expect_success 'strip_path_suffix' '
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 ""
'

Expand Down

0 comments on commit a0601dc

Please sign in to comment.