mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 7.4.903
Problem: MS-Windows: When 'encoding' differs from the current code page, expandinig wildcards may cause illegal memory access. Solution: Allocate a longer buffer. (Ken Takata)
This commit is contained in:
@@ -9940,8 +9940,9 @@ dos_expandpath(
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* make room for file name */
|
/* Make room for file name. When doing encoding conversion the actual
|
||||||
buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
|
* length may be quite a bit longer, thus use the maximum possible length. */
|
||||||
|
buf = alloc((int)MAXPATHL);
|
||||||
if (buf == NULL)
|
if (buf == NULL)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
@@ -741,6 +741,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 */
|
||||||
|
/**/
|
||||||
|
903,
|
||||||
/**/
|
/**/
|
||||||
902,
|
902,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user