]> granicus.if.org Git - vim/commitdiff
updated for version 7.4a.002 v7.4a.002
authorBram Moolenaar <Bram@vim.org>
Sun, 7 Jul 2013 14:15:35 +0000 (16:15 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 7 Jul 2013 14:15:35 +0000 (16:15 +0200)
Problem:    Valgrind errors in test 89. (Simon Ruderich)
Solution:   Allocate one more byte. (Dominique Pelle)

src/misc2.c
src/version.c

index 86a1f9def29b197328b4dcb7ea46c4bd6c8fc09e..504cf0aed33d8078b20a18fa72ac2fd1d6b458ca 100644 (file)
@@ -4712,7 +4712,8 @@ vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
            {
                wc_path = vim_strsave(search_ctx->ffsc_wc_path);
                temp = alloc((int)(STRLEN(search_ctx->ffsc_wc_path)
-                                + (STRLEN(search_ctx->ffsc_fix_path)) - len));
+                                + STRLEN(search_ctx->ffsc_fix_path + len)
+                                + 1));
            }
 
            if (temp == NULL || wc_path == NULL)
index d5622106fd8bc3b9ce347a415e9535810f94c1fb..ade1bf52870d1a200d23857ddb6d8eaf990a9463 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2,
 /**/
     1,
 /**/