diff --git a/src/eval.c b/src/eval.c index e455cb825c..5573e764d8 100644 --- a/src/eval.c +++ b/src/eval.c @@ -846,8 +846,8 @@ eval_clear() p = &vimvars[i]; if (p->vv_di.di_tv.v_type == VAR_STRING) { - vim_free(p->vv_string); - p->vv_string = NULL; + vim_free(p->vv_str); + p->vv_str = NULL; } else if (p->vv_di.di_tv.v_type == VAR_LIST) { diff --git a/src/version.c b/src/version.c index fb96904f19..e21e8e218e 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 32, /**/ 31, /**/