diff arogue7/sticks.c @ 200:1cd604c827a3

Advanced Rogue 7: initialize multiple variables. MSVC complained that they might be used uninitialized. In some cases, this might have been possible. XRogue already has initializations for all these variables.
author John "Elwin" Edwards
date Wed, 12 Aug 2015 15:42:02 -0400
parents b786053d2f37
children f9ef86cf22b2
line wrap: on
line diff
--- a/arogue7/sticks.c	Tue Aug 11 16:19:04 2015 -0400
+++ b/arogue7/sticks.c	Wed Aug 12 15:42:02 2015 -0400
@@ -33,13 +33,13 @@
 int which;
 int flags;
 {
-    register struct linked_list *item;
+    register struct linked_list *item = NULL;
     register struct thing *tp;
     register int y, x, bonus;
     struct linked_list *nitem;
     struct object *nobj;
     bool cursed, blessed, is_player;
-    char *mname;
+    char *mname = "";
 
     cursed = flags & ISCURSED;
     blessed = flags & ISBLESSED;