mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Problem: MS-Windows: tests fail, Vim crashes. Solution: Fix long file name handling.
This commit is contained in:
@@ -3109,6 +3109,7 @@ mch_dirname(
|
|||||||
int len)
|
int len)
|
||||||
{
|
{
|
||||||
char_u abuf[_MAX_PATH + 1];
|
char_u abuf[_MAX_PATH + 1];
|
||||||
|
DWORD lfnlen;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Originally this was:
|
* Originally this was:
|
||||||
@@ -3124,11 +3125,19 @@ mch_dirname(
|
|||||||
if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
|
if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
|
||||||
{
|
{
|
||||||
WCHAR wcbuf[_MAX_PATH + 1];
|
WCHAR wcbuf[_MAX_PATH + 1];
|
||||||
char_u *p;
|
char_u *p = NULL;
|
||||||
|
|
||||||
if (GetLongPathNameW(wbuf, wcbuf, _MAX_PATH) != 0)
|
if (GetLongPathNameW(wbuf, wcbuf, _MAX_PATH) != 0)
|
||||||
|
{
|
||||||
p = utf16_to_enc(wcbuf, NULL);
|
p = utf16_to_enc(wcbuf, NULL);
|
||||||
else
|
if (STRLEN(p) >= (size_t)len)
|
||||||
|
{
|
||||||
|
// long path name is too long, fall back to short one
|
||||||
|
vim_free(p);
|
||||||
|
p = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (p == NULL)
|
||||||
p = utf16_to_enc(wbuf, NULL);
|
p = utf16_to_enc(wbuf, NULL);
|
||||||
|
|
||||||
if (p != NULL)
|
if (p != NULL)
|
||||||
@@ -3143,11 +3152,13 @@ mch_dirname(
|
|||||||
#endif
|
#endif
|
||||||
if (GetCurrentDirectory(len, (LPSTR)buf) == 0)
|
if (GetCurrentDirectory(len, (LPSTR)buf) == 0)
|
||||||
return FAIL;
|
return FAIL;
|
||||||
if (GetLongPathNameA((LPSTR)buf, (LPSTR)abuf, _MAX_PATH) == 0)
|
lfnlen = GetLongPathNameA((LPCSTR)buf, (LPSTR)abuf, _MAX_PATH);
|
||||||
// return the short path name
|
if (lfnlen == 0 || lfnlen >= (DWORD)len)
|
||||||
|
// Failed to get long path name or it's too long: fall back to the
|
||||||
|
// short path name.
|
||||||
return OK;
|
return OK;
|
||||||
|
|
||||||
vim_strncpy(abuf, buf, len - 1);
|
STRCPY(buf, abuf);
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -794,6 +794,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
297,
|
||||||
/**/
|
/**/
|
||||||
296,
|
296,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user