mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.3693: Coverity warns for possibly using a NULL pointer
Problem: Coverity warns for possibly using a NULL pointer. Solution: Check for NULL and give an error.
This commit is contained in:
@@ -3189,6 +3189,12 @@ exec_instructions(ectx_T *ectx)
|
||||
{
|
||||
ufunc = find_func(funcref->fr_func_name, FALSE, NULL);
|
||||
}
|
||||
if (ufunc == NULL)
|
||||
{
|
||||
SOURCING_LNUM = iptr->isn_lnum;
|
||||
emsg(_(e_function_reference_invalid));
|
||||
goto theend;
|
||||
}
|
||||
if (fill_partial_and_closure(pt, ufunc, ectx) == FAIL)
|
||||
goto theend;
|
||||
tv = STACK_TV_BOT(0);
|
||||
|
Reference in New Issue
Block a user