# HG changeset patch # User Christian Brabandt # Date 1455921905 -3600 # Node ID 9b2d25319c481470a11a1e439201ed756a73e45c # Parent ee948cf5fe837da818432c99eee0023fa416a791 commit https://github.com/vim/vim/commit/8600ace87618d33ad3182124be447f0b2c9728f4 Author: Bram Moolenaar Date: Fri Feb 19 23:31:40 2016 +0100 patch 7.4.1362 Problem: Using unitinialized value. Solution: Initialize jo_set. diff --git a/src/eval.c b/src/eval.c --- a/src/eval.c +++ b/src/eval.c @@ -9886,6 +9886,7 @@ get_job_options(typval_T *tv, jobopt_T * int todo; hashitem_T *hi; + opt->jo_set = 0; if (tv->v_type == VAR_UNKNOWN) return OK; if (tv->v_type != VAR_DICT) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -748,6 +748,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1362, +/**/ 1361, /**/ 1360,