aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--win32/mingw.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/win32/mingw.c b/win32/mingw.c
index 093e795ac..eef3ab5d3 100644
--- a/win32/mingw.c
+++ b/win32/mingw.c
@@ -1561,6 +1561,9 @@ static char *resolve_symlinks(char *path)
1561 if (status != 0 && status < MAX_PATH) { 1561 if (status != 0 && status < MAX_PATH) {
1562 ptr = normalize_ntpathA(path); 1562 ptr = normalize_ntpathA(path);
1563 goto end; 1563 goto end;
1564 } else if (err_win_to_posix() == ENOSYS) {
1565 ptr = xstrdup(path);
1566 goto end;
1564 } 1567 }
1565 } 1568 }
1566 1569