patch 8.2.0181: problems parsing :term arguments
Problem: Problems parsing :term arguments.
Solution: Improve parsing, fix memory leak, add tests. (Ozaki Kiichi,
closes #5536)
diff --git a/src/terminal.c b/src/terminal.c
index 3bf914a..d789ab0 100644
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -595,9 +595,7 @@
#if defined(FEAT_SESSION)
// Remember the command for the session file.
if (opt->jo_term_norestore || argv != NULL)
- {
term->tl_command = vim_strsave((char_u *)"NONE");
- }
else if (argvar->v_type == VAR_STRING)
{
char_u *cmd = argvar->vval.v_string;
@@ -646,7 +644,11 @@
}
if (opt->jo_term_api != NULL)
- term->tl_api = vim_strsave(opt->jo_term_api);
+ {
+ char_u *p = skiptowhite(opt->jo_term_api);
+
+ term->tl_api = vim_strnsave(opt->jo_term_api, p - opt->jo_term_api);
+ }
else
term->tl_api = vim_strsave((char_u *)"Tapi_");
@@ -778,6 +780,7 @@
char_u *buf = NULL;
char_u *keys;
+ vim_free(opt.jo_eof_chars);
p = skiptowhite(cmd);
*p = NUL;
keys = replace_termcodes(ep + 1, &buf,
@@ -6697,7 +6700,7 @@
#endif
// This may change a string in "argvar".
- term->tl_job = job_start(argvar, argv, opt, TRUE);
+ term->tl_job = job_start(argvar, argv, opt, &term->tl_job);
if (term->tl_job != NULL)
++term->tl_job->jv_refcount;