changeset 8136:9b2d25319c48 v7.4.1362

commit https://github.com/vim/vim/commit/8600ace87618d33ad3182124be447f0b2c9728f4 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 19 23:31:40 2016 +0100 patch 7.4.1362 Problem: Using unitinialized value. Solution: Initialize jo_set.
author Christian Brabandt <cb@256bit.org>
date Fri, 19 Feb 2016 23:45:05 +0100
parents ee948cf5fe83
children e5f3abc284b1
files src/eval.c src/version.c
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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)
--- 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,