summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2010-05-25 21:37:17 +0200
committerBram Moolenaar <bram@vim.org>2010-05-25 21:37:17 +0200
commitbc49ceb2f844080449634d9388b1e594a0fbeadb (patch)
treef973462c6d6887740f10ef8207a6102a7b208018
parentdfbf21e330f59962b5e897cf929af25b8e121296 (diff)
downloadvim-bc49ceb2f844080449634d9388b1e594a0fbeadb.tar.gz
updated for version 7.2.438v7.2.438
Problem: "vim -r" crashes. Solution: Don't use NULL pointer argument.
-rw-r--r--src/memline.c9
-rw-r--r--src/version.c2
2 files changed, 10 insertions, 1 deletions
diff --git a/src/memline.c b/src/memline.c
index 74f94ed4..84ce2d58 100644
--- a/src/memline.c
+++ b/src/memline.c
@@ -1404,15 +1404,22 @@ recover_names(fname, list, nr)
int i;
char_u *dirp;
char_u *dir_name;
- char_u *fname_res = *fname;
+ char_u *fname_res = NULL;
#ifdef HAVE_READLINK
char_u fname_buf[MAXPATHL];
+#endif
+ if (fname != NULL)
+ {
+#ifdef HAVE_READLINK
/* Expand symlink in the file name, because the swap file is created with
* the actual file instead of with the symlink. */
if (resolve_symlink(*fname, fname_buf) == OK)
fname_res = fname_buf;
+ else
#endif
+ fname_res = *fname;
+ }
if (list)
{
diff --git a/src/version.c b/src/version.c
index 7a0642a2..31a49be3 100644
--- a/src/version.c
+++ b/src/version.c
@@ -682,6 +682,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 438,
+/**/
437,
/**/
436,