From b18919146d0285cc6a4fee76de849ab1fc672d37 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 9 Feb 2011 14:47:03 +0100 Subject: [PATCH] updated for version 7.3.113 Problem: Windows: Fall back directory for creating temp file is wrong. Solution: Use "." instead of empty string. (Hong Xu) --- src/fileio.c | 5 ++++- src/version.c | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/fileio.c b/src/fileio.c index 0c7b00c2c..1360fde0c 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -7459,7 +7459,10 @@ vim_tempname(extra_char) STRCPY(itmp, ""); if (GetTempPath(_MAX_PATH, szTempFile) == 0) - szTempFile[0] = NUL; /* GetTempPath() failed, use current dir */ + { + szTempFile[0] = '.'; /* GetTempPath() failed, use current dir */ + szTempFile[1] = NUL; + } strcpy(buf4, "VIM"); buf4[2] = extra_char; /* make it "VIa", "VIb", etc. */ if (GetTempFileName(szTempFile, buf4, 0, itmp) == 0) diff --git a/src/version.c b/src/version.c index ff5db0aa0..2dd143b5a 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 113, /**/ 112, /**/ -- 2.50.1