From 19fa46a469743653a16a48c4222482d9f33e30a2 Mon Sep 17 00:00:00 2001 From: Damien Lejay Date: Mon, 15 Sep 2025 19:55:25 +0000 Subject: [PATCH] patch 9.1.1765: f_isnan() and f_isinf() do not correctly initialize rettv type 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 Signed-off-by: Christian Brabandt --- src/float.c | 6 ++++++ src/version.c | 2 ++ 2 files changed, 8 insertions(+) diff --git a/src/float.c b/src/float.c index 4c8e5fe10a..fcdaaefa99 100644 --- a/src/float.c +++ b/src/float.c @@ -345,6 +345,9 @@ f_fmod(typval_T *argvars, typval_T *rettv) 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; @@ -358,6 +361,9 @@ f_isinf(typval_T *argvars, typval_T *rettv) 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; diff --git a/src/version.c b/src/version.c index 1e231bf31f..f58befda00 100644 --- a/src/version.c +++ b/src/version.c @@ -724,6 +724,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1765, /**/ 1764, /**/