commit | 8600ace87618d33ad3182124be447f0b2c9728f4 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Feb 19 23:31:40 2016 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Feb 19 23:31:40 2016 +0100 |
tree | e47982e7bd6f42e568732b0d1ff82f18126b5912 | |
parent | 254e00d71429aa4e71b93d3e8c6bb93bfebe4f26 [diff] [blame] |
patch 7.4.1362 Problem: Using unitinialized value. Solution: Initialize jo_set.
diff --git a/src/eval.c b/src/eval.c index 31dff05..8afd52e 100644 --- a/src/eval.c +++ b/src/eval.c
@@ -9886,6 +9886,7 @@ int todo; hashitem_T *hi; + opt->jo_set = 0; if (tv->v_type == VAR_UNKNOWN) return OK; if (tv->v_type != VAR_DICT)