mirror of
https://github.com/neovim/neovim.git
synced 2025-10-09 03:16:31 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user