Problem: resolve('/') returns an empty string.
Solution: Don't remove single slash. (closes #7074)
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()
call assert_equal('Xlink2', resolve('Xlink1'))
call assert_equal('./Xlink2', resolve('./Xlink1'))
call delete('Xlink1')
+
+ call assert_equal('/', resolve('/'))
endfunc
func s:normalize_fname(fname)
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1804,
/**/
1803,
/**/