Skip to content

Commit

Permalink
Merge remote-tracking branch 'vim/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
splhack committed Oct 31, 2015
2 parents 77b7042 + 7314efd commit c42ea21
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/misc1.c
Expand Up @@ -9946,8 +9946,9 @@ dos_expandpath(
return 0;
}

/* make room for file name */
buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
/* Make room for file name. When doing encoding conversion the actual
* length may be quite a bit longer, thus use the maximum possible length. */
buf = alloc((int)MAXPATHL);
if (buf == NULL)
return 0;

Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -756,6 +756,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
903,
/**/
902,
/**/
Expand Down

0 comments on commit c42ea21

Please sign in to comment.