]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.349 v7.3.349
authorBram Moolenaar <Bram@vim.org>
Wed, 26 Oct 2011 09:44:18 +0000 (11:44 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 26 Oct 2011 09:44:18 +0000 (11:44 +0200)
Problem:    When running out of memory during startup trying to open a
            swapfile will loop forever.
Solution:   Let findswapname() set dirp to NULL if out of memory.

src/memline.c
src/version.c

index 8201a01206f4cc722472f57d589f5887d4a73e69..2a2426d672c7b956ae670bada4727eb6f91bfa79 100644 (file)
@@ -621,6 +621,8 @@ ml_setname(buf)
            break;
        fname = findswapname(buf, &dirp, mfp->mf_fname);
                                                    /* alloc's fname */
+       if (dirp == NULL)           /* out of memory */
+           break;
        if (fname == NULL)          /* no file name found for this dir */
            continue;
 
@@ -744,6 +746,8 @@ ml_open_file(buf)
         * and creating it, another Vim creates the file.  In that case the
         * creation will fail and we will use another directory. */
        fname = findswapname(buf, &dirp, NULL); /* allocates fname */
+       if (dirp == NULL)
+           break;  /* out of memory */
        if (fname == NULL)
            continue;
        if (mf_open_file(mfp, fname) == OK)     /* consumes fname! */
@@ -4114,6 +4118,7 @@ do_swapexists(buf, fname)
  *
  * Several names are tried to find one that does not exist
  * Returns the name in allocated memory or NULL.
+ * When out of memory "dirp" is set to NULL.
  *
  * Note: If BASENAMELEN is not correct, you will get error messages for
  *      not being able to open the swap or undo file
@@ -4157,7 +4162,9 @@ findswapname(buf, dirp, old_fname)
      * First allocate some memory to put the directory name in.
      */
     dir_name = alloc((unsigned)STRLEN(*dirp) + 1);
-    if (dir_name != NULL)
+    if (dir_name == NULL)
+       *dirp = NULL;
+    else
        (void)copy_option_part(dirp, dir_name, 31000, ",");
 
     /*
index 9f5b06cc4c9ace0f163a5fcf16ec8136c6f5d19c..4656587028b0f20ac4b147710e2cb8391cef1fb3 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    349,
 /**/
     348,
 /**/