commit | 6f9770137369e00bdad6fe9dcfe282cac4dd8c40 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jan 06 17:53:38 2010 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jan 06 17:53:38 2010 +0100 |
tree | 0d6f5b9006b0e1c99bfbaf570aced08cc4670ab1 | |
parent | 70d60e9da1db6d916421b49347ead381e914aaad [diff] [blame] |
updated for version 7.2.326
diff --git a/src/misc1.c b/src/misc1.c index 3da0d9a..6b6f339 100644 --- a/src/misc1.c +++ b/src/misc1.c
@@ -3470,7 +3470,9 @@ homedrive = mch_getenv((char_u *)"HOMEDRIVE"); homepath = mch_getenv((char_u *)"HOMEPATH"); - if (homedrive != NULL && homepath != NULL + if (homepath == NULL || *homepath == NUL) + homepath = "\\"; + if (homedrive != NULL && STRLEN(homedrive) + STRLEN(homepath) < MAXPATHL) { sprintf((char *)NameBuff, "%s%s", homedrive, homepath);