summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-03-30 21:51:28 +0100
committerBram Moolenaar <Bram@vim.org>2019-03-30 21:51:28 +0100
commit8662189736e6cefb3fe852728adb5341f83973cf (patch)
treedfed4fa7463c623f47dcbba73617d057e701ddbc
parent5209334c551778fe6f76945f373ee14fcac96f52 (diff)
downloadvim-git-8662189736e6cefb3fe852728adb5341f83973cf.tar.gz
patch 8.1.1095: MS-Windows: executable() fails on very long filenamev8.1.1095
Problem: MS-Windows: executable() fails on very long filename. Solution: (Ken Takata, closes #4015)
-rw-r--r--src/os_win32.c13
-rw-r--r--src/testdir/test_functions.vim11
-rw-r--r--src/version.c2
3 files changed, 21 insertions, 5 deletions
diff --git a/src/os_win32.c b/src/os_win32.c
index fe729d4de..c0d6ad77b 100644
--- a/src/os_win32.c
+++ b/src/os_win32.c
@@ -3299,14 +3299,17 @@ mch_writable(char_u *name)
int
mch_can_exe(char_u *name, char_u **path, int use_path)
{
- char_u buf[_MAX_PATH];
+ // WinNT and later can use _MAX_PATH wide characters for a pathname, which
+ // means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
+ // UTF-8.
+ char_u buf[_MAX_PATH * 3];
int len = (int)STRLEN(name);
char_u *p, *saved;
- if (len >= _MAX_PATH) /* safety check */
+ if (len >= sizeof(buf)) // safety check
return FALSE;
- /* Ty using the name directly when a Unix-shell like 'shell'. */
+ // Try using the name directly when a Unix-shell like 'shell'.
if (strstr((char *)gettail(p_sh), "sh") != NULL)
if (executable_exists((char *)name, path, use_path))
return TRUE;
@@ -3339,7 +3342,7 @@ mch_can_exe(char_u *name, char_u **path, int use_path)
}
vim_free(saved);
- vim_strncpy(buf, name, _MAX_PATH - 1);
+ vim_strncpy(buf, name, sizeof(buf) - 1);
p = mch_getenv("PATHEXT");
if (p == NULL)
p = (char_u *)".com;.exe;.bat;.cmd";
@@ -3354,7 +3357,7 @@ mch_can_exe(char_u *name, char_u **path, int use_path)
++p;
}
else
- copy_option_part(&p, buf + len, _MAX_PATH - len, ";");
+ copy_option_part(&p, buf + len, sizeof(buf) - len, ";");
if (executable_exists((char *)buf, path, use_path))
return TRUE;
}
diff --git a/src/testdir/test_functions.vim b/src/testdir/test_functions.vim
index 63f477db9..e273e8aa7 100644
--- a/src/testdir/test_functions.vim
+++ b/src/testdir/test_functions.vim
@@ -944,6 +944,17 @@ func Test_Executable()
endif
endfunc
+func Test_executable_longname()
+ if !has('win32')
+ return
+ endif
+
+ let fname = 'X' . repeat('あ', 200) . '.bat'
+ call writefile([], fname)
+ call assert_equal(1, executable(fname))
+ call delete(fname)
+endfunc
+
func Test_hostname()
let hostname_vim = hostname()
if has('unix')
diff --git a/src/version.c b/src/version.c
index 9ba9e92d0..3e675fcde 100644
--- a/src/version.c
+++ b/src/version.c
@@ -772,6 +772,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1095,
+/**/
1094,
/**/
1093,