comparison src/filepath.c @ 22512:aeeee593fe0f v8.2.1804

patch 8.2.1804: resolve('/') returns an empty string Commit: https://github.com/vim/vim/commit/50c4e9e08fb0981892e33afb9fe3751aa6df1fa4 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Oct 5 20:38:06 2020 +0200 patch 8.2.1804: resolve('/') returns an empty string Problem: resolve('/') returns an empty string. Solution: Don't remove single slash. (closes https://github.com/vim/vim/issues/7074)
author Bram Moolenaar <Bram@vim.org>
date Mon, 05 Oct 2020 20:45:04 +0200
parents 995f5e061e27
children e82579016863
comparison
equal deleted inserted replaced
22511:1eb50499f3b0 22512:aeeee593fe0f
1887 if (p[0] == '.' && (vim_ispathsep(p[1]) 1887 if (p[0] == '.' && (vim_ispathsep(p[1])
1888 || (p[1] == '.' && (vim_ispathsep(p[2]))))) 1888 || (p[1] == '.' && (vim_ispathsep(p[2])))))
1889 is_relative_to_current = TRUE; 1889 is_relative_to_current = TRUE;
1890 1890
1891 len = STRLEN(p); 1891 len = STRLEN(p);
1892 if (len > 0 && after_pathsep(p, p + len)) 1892 if (len > 1 && after_pathsep(p, p + len))
1893 { 1893 {
1894 has_trailing_pathsep = TRUE; 1894 has_trailing_pathsep = TRUE;
1895 p[len - 1] = NUL; // the trailing slash breaks readlink() 1895 p[len - 1] = NUL; // the trailing slash breaks readlink()
1896 } 1896 }
1897 1897