]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.506 v7.4.506
authorBram Moolenaar <Bram@vim.org>
Wed, 5 Nov 2014 18:33:24 +0000 (19:33 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 5 Nov 2014 18:33:24 +0000 (19:33 +0100)
Problem:    MS-Windows: Cannot open a file with 259 characters.
Solution:   Fix off-by-one error. (Ken Takata)

src/os_mswin.c
src/version.c

index 0dfd7d6091fa38e7ac05b022616f806508d5a4d2..b50b86c888b8531940f3c5b9a43a41038589f57c 100644 (file)
@@ -411,7 +411,7 @@ mch_FullName(
             * - convert the result from UCS2 to 'encoding'.
             */
            wname = enc_to_utf16(fname, NULL);
-           if (wname != NULL && _wfullpath(wbuf, wname, MAX_PATH - 1) != NULL)
+           if (wname != NULL && _wfullpath(wbuf, wname, MAX_PATH) != NULL)
            {
                cname = utf16_to_enc((short_u *)wbuf, NULL);
                if (cname != NULL)
index 178a7845f269f3d024145d88324444d92f417523..deaa7b556d8bace05a9cc617d6ac6b42195c769d 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    506,
 /**/
     505,
 /**/