Patch 9.0.0382
Problem: Freeing the wrong string on failure.
Solution: Adjust the argument. Reorder the code.
Files: src/vim9execute.c
*** ../vim-9.0.0381/src/vim9execute.c 2022-09-04 15:40:31.816188110 +0100
--- src/vim9execute.c 2022-09-05 10:45:34.840315928 +0100
***************
*** 937,957 ****
if (dfunc->df_defer_var_idx == 0)
{
iemsg("df_defer_var_idx is zero");
! vim_free(func_tv.vval.v_string);
return FAIL;
}
- func_tv.v_type = VAR_FUNC;
- func_tv.v_lock = 0;
- func_tv.vval.v_string = name;
l = add_defer_item(dfunc->df_defer_var_idx - 1, 1, current_ectx);
if (l == NULL)
{
! vim_free(func_tv.vval.v_string);
return FAIL;
}
list_set_item(l, 0, &func_tv);
for (i = 0; i < argcount; ++i)
list_set_item(l, i + 1, argvars + i);
return OK;
--- 937,958 ----
if (dfunc->df_defer_var_idx == 0)
{
iemsg("df_defer_var_idx is zero");
! vim_free(name);
return FAIL;
}
l = add_defer_item(dfunc->df_defer_var_idx - 1, 1, current_ectx);
if (l == NULL)
{
! vim_free(name);
return FAIL;
}
+ func_tv.v_type = VAR_FUNC;
+ func_tv.v_lock = 0;
+ func_tv.vval.v_string = name;
list_set_item(l, 0, &func_tv);
+
for (i = 0; i < argcount; ++i)
list_set_item(l, i + 1, argvars + i);
return OK;
*** ../vim-9.0.0381/src/version.c 2022-09-04 21:29:41.556536007 +0100
--- src/version.c 2022-09-05 10:46:52.344286229 +0100
***************
*** 705,706 ****
--- 705,708 ----
{ /* Add new patch number below this line */
+ /**/
+ 382,
/**/
--
All good vision statements are created by groups of people with bloated
bladders who would rather be doing anything else.
(Scott Adams - The Dilbert principle)
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20220905094857.6E52D1C0CF3%40moolenaar.net.