patch 8.2.5017: gcc 12.1 warns for uninitialized variable

Problem:    Gcc 12.1 warns for uninitialized variable.
Solution:   Initialize the variable. (closes #10476)
diff --git a/src/version.c b/src/version.c
index 250b73e..980ddff 100644
--- a/src/version.c
+++ b/src/version.c
@@ -735,6 +735,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    5017,
+/**/
     5016,
 /**/
     5015,