0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.2.3201: crash in test

Problem:    Crash in test.
Solution:   Initialize "where".
This commit is contained in:
Bram Moolenaar
2021-07-22 15:14:25 +02:00
parent 7a3fe3e180
commit 2b59df00d8
3 changed files with 5 additions and 5 deletions

View File

@@ -3368,9 +3368,8 @@ eval7t(
}
else
{
where_T where;
where_T where = WHERE_INIT;
where.wt_index = 0;
where.wt_variable = TRUE;
res = check_type(want_type, actual, TRUE, where);
}