diff --git a/src/version.c b/src/version.c index 12e5fa107..c541e6f7f 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1340, /**/ 1339, /**/ diff --git a/src/vim9compile.c b/src/vim9compile.c index d45dd63a1..64526aa9d 100644 --- a/src/vim9compile.c +++ b/src/vim9compile.c @@ -1848,8 +1848,9 @@ compile_lhs( lhs->lhs_type = &t_any; } - int use_class = lhs->lhs_type->tt_type == VAR_CLASS - || lhs->lhs_type->tt_type == VAR_OBJECT; + int use_class = lhs->lhs_type != NULL + && (lhs->lhs_type->tt_type == VAR_CLASS + || lhs->lhs_type->tt_type == VAR_OBJECT); if (lhs->lhs_type == NULL || (use_class ? lhs->lhs_type->tt_class == NULL : lhs->lhs_type->tt_member == NULL))