chore(typval): return NULL over false for pointer return type (#17316)

While we're at it, abort() for an unhandled v_type.
This commit is contained in:
Sean Dewar 2022-02-07 01:51:09 +00:00 committed by GitHub
parent cf86adba61
commit f02a5a7bda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3205,8 +3205,9 @@ const char *tv_get_string_buf_chk(const typval_T *const tv, char *const buf)
case VAR_BLOB:
case VAR_UNKNOWN:
emsg(_(str_errors[tv->v_type]));
return false;
return NULL;
}
abort();
return NULL;
}