mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 14:38:32 +00:00
refactor(coverity/345583): assert fp is non-NULL
Since we already have a typval, we know the lookup will succeed.
This commit is contained in:
@@ -619,6 +619,7 @@ bool nlua_push_typval(lua_State *lstate, typval_T *const tv, bool special)
|
|||||||
}
|
}
|
||||||
if (tv->v_type == VAR_FUNC) {
|
if (tv->v_type == VAR_FUNC) {
|
||||||
ufunc_T *fp = find_func(tv->vval.v_string);
|
ufunc_T *fp = find_func(tv->vval.v_string);
|
||||||
|
assert(fp != NULL);
|
||||||
if (fp->uf_cb == nlua_CFunction_func_call) {
|
if (fp->uf_cb == nlua_CFunction_func_call) {
|
||||||
nlua_pushref(lstate, ((LuaCFunctionState *)fp->uf_cb_state)->lua_callable.func_ref);
|
nlua_pushref(lstate, ((LuaCFunctionState *)fp->uf_cb_state)->lua_callable.func_ref);
|
||||||
return true;
|
return true;
|
||||||
|
Reference in New Issue
Block a user