Problem: Coverity warning for ignoring return value.
Solution: Check the return value and jump if failed.
call CheckDefFailure("let x = @", "E1002:")
call CheckDefFailure("let x = @<", "E354:")
+
+ call CheckDefFailure("let x = ¬exist", "E113:")
endfunc
let g:Funcrefs = [function('add')]
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 167,
/**/
166,
/**/
if (ga_grow(&ectx.ec_stack, 1) == FAIL)
goto failed;
- get_option_tv(&name, &optval, TRUE);
+ if (get_option_tv(&name, &optval, TRUE) == FAIL)
+ goto failed;
*STACK_TV_BOT(0) = optval;
++ectx.ec_stack.ga_len;
}