0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.1.0894: MS-Windows: resolve() does not return a reparse point

Problem:    MS-Windows: resolve() does not return a reparse point.
Solution:   Improve resolve(). (Yasuhiro Matsumoto, closes #3896)
This commit is contained in:
Bram Moolenaar
2019-02-10 23:18:53 +01:00
parent 3615abb693
commit dce1e89be4
7 changed files with 286 additions and 6 deletions

View File

@@ -4847,7 +4847,7 @@ fname_expand(
char_u *rfname;
// If the file name is a shortcut file, use the file it links to.
rfname = mch_resolve_shortcut(*ffname);
rfname = mch_resolve_path(*ffname, FALSE);
if (rfname != NULL)
{
vim_free(*ffname);