diff src/ops.c @ 6508:e1874a4524f8 v7.4.581

updated for version 7.4.581 Problem: Compiler warnings for unitinialized variables. (John Little) Solution: Initialize the variables.
author Bram Moolenaar <bram@vim.org>
date Sun, 18 Jan 2015 14:08:56 +0100
parents 86aacd619ac0
children f9d02ce2f745
line wrap: on
line diff
--- a/src/ops.c
+++ b/src/ops.c
@@ -5663,8 +5663,8 @@ read_viminfo_register(virp, force)
     int		set_prev = FALSE;
     char_u	*str;
     char_u	**array = NULL;
-    int		new_type;
-    colnr_T	new_width;
+    int		new_type = MCHAR; /* init to shut up compiler */
+    colnr_T	new_width = 0; /* init to shut up compiler */
 
     /* We only get here (hopefully) if line[0] == '"' */
     str = virp->vir_line + 1;
@@ -5747,6 +5747,7 @@ read_viminfo_register(virp, force)
 		do_it = FALSE;
 	}
     }
+
     if (do_it)
     {
 	/* free y_array[] */