From 09365025386ac6af4710517a89fe0c4ed2bc86e4 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 17 Jan 2013 17:37:35 +0100 Subject: [PATCH] updated for version 7.3.771 Problem: Uninitialized variable. (Yasuhiro Matsumoto) Solution: Set x2 to -1. --- src/option.c | 6 +++--- src/version.c | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/option.c b/src/option.c index 8f5240602..f38e9c706 100644 --- a/src/option.c +++ b/src/option.c @@ -6154,7 +6154,8 @@ did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf, { for (p = *varp; *p != NUL; ++p) { - int x2,x3 = -1; + int x2 = -1; + int x3 = -1; if (*p != NUL) p += mb_ptr2len(p); @@ -6165,8 +6166,7 @@ did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf, x3 = mb_ptr2char(p); p += mb_ptr2len(p); } - if (x2 != ':' || x2 == -1 || x3 == -1 - || (*p != NUL && *p != ',')) + if (x2 != ':' || x3 == -1 || (*p != NUL && *p != ',')) { errmsg = e_invarg; break; diff --git a/src/version.c b/src/version.c index 18fcd020f..f071eb962 100644 --- a/src/version.c +++ b/src/version.c @@ -725,6 +725,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 771, /**/ 770, /**/ -- 2.50.1