patch 8.2.1804: resolve('/') returns an empty string
Problem: resolve('/') returns an empty string.
Solution: Don't remove single slash. (closes #7074)
diff --git a/src/filepath.c b/src/filepath.c
index e2131a4..b692e22 100644
--- a/src/filepath.c
+++ b/src/filepath.c
@@ -1889,7 +1889,7 @@
is_relative_to_current = TRUE;
len = STRLEN(p);
- if (len > 0 && after_pathsep(p, p + len))
+ if (len > 1 && after_pathsep(p, p + len))
{
has_trailing_pathsep = TRUE;
p[len - 1] = NUL; // the trailing slash breaks readlink()