We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd38f30 commit c4bbc6dCopy full SHA for c4bbc6d
src/os_mswin.c
@@ -411,7 +411,7 @@ mch_FullName(
411
* - convert the result from UCS2 to 'encoding'.
412
*/
413
wname = enc_to_utf16(fname, NULL);
414
- if (wname != NULL && _wfullpath(wbuf, wname, MAX_PATH - 1) != NULL)
+ if (wname != NULL && _wfullpath(wbuf, wname, MAX_PATH) != NULL)
415
{
416
cname = utf16_to_enc((short_u *)wbuf, NULL);
417
if (cname != NULL)
src/version.c
@@ -741,6 +741,8 @@ static char *(features[]) =
741
742
static int included_patches[] =
743
{ /* Add new patch number below this line */
744
+/**/
745
+ 506,
746
/**/
747
505,
748
0 commit comments