diff src/terminal.c @ 25198:eafc0e07b188 v8.2.3135

patch 8.2.3135: Vim9: builtin function arguments not checked at compile time Commit: https://github.com/vim/vim/commit/5b73992d8f82be7ac4b6f46c17f53ffb9640e5fa Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sat Jul 10 13:15:41 2021 +0200 patch 8.2.3135: Vim9: builtin function arguments not checked at compile time Problem: Vim9: builtin function arguments not checked at compile time. Solution: Add more type checks. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/8539)
author Bram Moolenaar <Bram@vim.org>
date Sat, 10 Jul 2021 13:30:06 +0200
parents 7334bf933510
children acda780ffc3e
line wrap: on
line diff
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -5276,6 +5276,11 @@ term_load_dump(typval_T *argvars, typval
     FILE	*fd2 = NULL;
     char_u	*textline = NULL;
 
+    if (in_vim9script()
+	    && (check_for_string_arg(argvars, 0) == FAIL
+		|| check_for_dict_arg(argvars, 1) == FAIL))
+	return;
+
     // First open the files.  If this fails bail out.
     fname1 = tv_get_string_buf_chk(&argvars[0], buf1);
     if (do_diff)