]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.013 v7.4.013
authorBram Moolenaar <Bram@vim.org>
Fri, 30 Aug 2013 14:51:18 +0000 (16:51 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 30 Aug 2013 14:51:18 +0000 (16:51 +0200)
Problem:    File name buffer too small for utf-8.
Solution:   Use character count instead of byte count. (Ken Takata)

src/os_mswin.c
src/version.c

index 77f559917658d7e55026df9e36ad09626e523ea0..67b7960978388ed482f33066e640222715f772ab 100644 (file)
@@ -456,7 +456,14 @@ mch_FullName(
     int
 mch_isFullName(char_u *fname)
 {
+#ifdef FEAT_MBYTE
+    /* WinNT and later can use _MAX_PATH wide characters for a pathname, which
+     * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
+     * UTF-8. */
+    char szName[_MAX_PATH * 3 + 1];
+#else
     char szName[_MAX_PATH + 1];
+#endif
 
     /* A name like "d:/foo" and "//server/share" is absolute */
     if ((fname[0] && fname[1] == ':' && (fname[2] == '/' || fname[2] == '\\'))
@@ -464,7 +471,7 @@ mch_isFullName(char_u *fname)
        return TRUE;
 
     /* A name that can't be made absolute probably isn't absolute. */
-    if (mch_FullName(fname, szName, _MAX_PATH, FALSE) == FAIL)
+    if (mch_FullName(fname, szName, sizeof(szName) - 1, FALSE) == FAIL)
        return FALSE;
 
     return pathcmp(fname, szName, -1) == 0;
@@ -498,10 +505,17 @@ slash_adjust(p)
     int
 vim_stat(const char *name, struct stat *stp)
 {
+#ifdef FEAT_MBYTE
+    /* WinNT and later can use _MAX_PATH wide characters for a pathname, which
+     * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
+     * UTF-8. */
+    char       buf[_MAX_PATH * 3 + 1];
+#else
     char       buf[_MAX_PATH + 1];
+#endif
     char       *p;
 
-    vim_strncpy((char_u *)buf, (char_u *)name, _MAX_PATH);
+    vim_strncpy((char_u *)buf, (char_u *)name, sizeof(buf) - 1);
     p = buf + strlen(buf);
     if (p > buf)
        mb_ptr_back(buf, p);
index 8eee3e95cc462bb04fe55c2e6c0414f45bb4cc7c..13ff1ca522b2734ffe950912660ba25cca3fcf5e 100644 (file)
@@ -738,6 +738,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    13,
 /**/
     12,
 /**/