commit | 2b59df00d80ea8d2c0fcf4f4ae9a018c1790206f | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Jul 22 15:14:25 2021 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Jul 22 15:14:25 2021 +0200 |
tree | 41a0709dbefac22013cd3282d5e53465a86008a1 | |
parent | 7a3fe3e180bdbce8f193abdf399559c5154bdaae [diff] [blame] |
patch 8.2.3201: crash in test Problem: Crash in test. Solution: Initialize "where".
diff --git a/src/eval.c b/src/eval.c index bfe9f61..fdee008 100644 --- a/src/eval.c +++ b/src/eval.c
@@ -3368,9 +3368,8 @@ } 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); }