Problem: f_isnan() and f_isinf() do not correctly initialize rettv type
Solution: Initialize them with type: VAR_NUMBER and value 0 (Damien Lejay).
Both builtins wrote only rettv->vval.v_number and relied on call_func()
initialising rettv->v_type to VAR_NUMBER. Explicitly set
rettv->v_type = VAR_NUMBER;
rettv->vval.v_number = 0;
at function entry to avoid undefined behaviour and make the return type
self-contained.
closes: #18307
Signed-off-by: Damien Lejay <damien@lejay.be>
Signed-off-by: Christian Brabandt <cb@256bit.org>
void
f_isinf(typval_T *argvars, typval_T *rettv)
{
+ rettv->v_type = VAR_NUMBER;
+ rettv->vval.v_number = 0;
+
if (in_vim9script() && check_for_float_or_nr_arg(argvars, 0) == FAIL)
return;
void
f_isnan(typval_T *argvars, typval_T *rettv)
{
+ rettv->v_type = VAR_NUMBER;
+ rettv->vval.v_number = 0;
+
if (in_vim9script() && check_for_float_or_nr_arg(argvars, 0) == FAIL)
return;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1765,
/**/
1764,
/**/