diff --git a/src/misc1.c b/src/misc1.c index 3da0d9aef5..6b6f339912 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -3470,7 +3470,9 @@ init_homedir() 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); diff --git a/src/version.c b/src/version.c index c317293450..1580b314c8 100644 --- a/src/version.c +++ b/src/version.c @@ -681,6 +681,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 326, /**/ 325, /**/