From 23c5ebeb95cb942df307946e3ced230a7c8312eb Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Tue, 18 Jun 2024 20:43:51 +0200 Subject: patch 9.1.0499: MS-Windows: doesn't handle symlinks properly Problem: MS-Windows: doesn't handle symlinks properly (Timothy Madden) Solution: Implement lstat() on MS-Windows (author) lstat() differs from stat() in how it handles symbolic links, the former doesn't resolve the symlink while the latter does so. Implement a simple yet effective fallback using Win32 APIs. fixes #14933 closes: #15014 Co-authored-by: K.Takata Signed-off-by: LemonBoy Signed-off-by: K.Takata Signed-off-by: Christian Brabandt --- src/version.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/version.c') diff --git a/src/version.c b/src/version.c index 7f84d9dfde..2d83fe6555 100644 --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 499, /**/ 498, /**/ -- cgit v1.2.3