comparison src/vim9execute.c @ 24077:5006d95ef82d v8.2.2580

patch 8.2.2580: Vim9: checking vararg type may be wrong Commit: https://github.com/vim/vim/commit/e3ffcd9902efc756178900d9bd972c74a09c3fcd Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 8 21:47:13 2021 +0100 patch 8.2.2580: Vim9: checking vararg type may be wrong Problem: Vim9: checking vararg type is wrong when function is auto-loaded. Solution: Use the member type. (closes https://github.com/vim/vim/issues/7933)
author Bram Moolenaar <Bram@vim.org>
date Mon, 08 Mar 2021 22:00:03 +0100
parents a6aec9a89184
children 0346a59ed5bf
comparison
equal deleted inserted replaced
24076:2828d6cfb0b1 24077:5006d95ef82d
805 805
806 // The function can change at runtime, check that the argument 806 // The function can change at runtime, check that the argument
807 // types are correct. 807 // types are correct.
808 for (i = 0; i < argcount; ++i) 808 for (i = 0; i < argcount; ++i)
809 { 809 {
810 type_T *type = i < ufunc->uf_args.ga_len 810 type_T *type = NULL;
811 ? ufunc->uf_arg_types[i] : ufunc->uf_va_type; 811
812 812 if (i < ufunc->uf_args.ga_len)
813 type = ufunc->uf_arg_types[i];
814 else if (ufunc->uf_va_type != NULL)
815 type = ufunc->uf_va_type->tt_member;
813 if (type != NULL && check_typval_arg_type(type, 816 if (type != NULL && check_typval_arg_type(type,
814 &argv[i], i + 1) == FAIL) 817 &argv[i], i + 1) == FAIL)
815 return FAIL; 818 return FAIL;
816 } 819 }
817 } 820 }