changeset 11428:346168f2a6cb v8.0.0598

patch 8.0.0598: building with gcc 7.1 yields new warnings commit https://github.com/vim/vim/commit/9e0f6ec0762575d229b86798b284ca4876bc3d73 Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 16 09:36:54 2017 +0200 patch 8.0.0598: building with gcc 7.1 yields new warnings Problem: Building with gcc 7.1 yields new warnings. Solution: Initialize result. (John Marriott)
author Christian Brabandt <cb@256bit.org>
date Tue, 16 May 2017 09:45:03 +0200
parents 30e43349a78a
children f1c35307bfef
files src/ex_docmd.c src/version.c
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -10890,6 +10890,9 @@ eval_vars(
 		result = strbuf;
 		break;
 #endif
+	default:
+		result = (char_u *)""; /* avoid gcc warning */
+		break;
 	}
 
 	resultlen = (int)STRLEN(result);	/* length of new string */
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    598,
+/**/
     597,
 /**/
     596,