Proper field initialization.
authormarkus schnalke <meillo@marmaro.de>
Tue, 27 Mar 2012 07:46:59 +0000 (09:46 +0200)
committermarkus schnalke <meillo@marmaro.de>
Tue, 27 Mar 2012 07:46:59 +0000 (09:46 +0200)
gcc -Wmissing-field-initializers noticed several struct initializations
that didn't explicitly list all fields. They were of no consequence because
they were for static data, so they were initialized properly.
Also, changed the initialization of global.c_ovtxt from "" to NULL because
free_queue () freed it if non-NULL, though I think the "" was always
overwritten.

Pulled in from nmh. Thanks to David Levine.

sbr/addrsbr.c
uip/mhl.c
uip/repl.c

index 4876d09..e759088 100644 (file)
@@ -241,7 +241,7 @@ ismymbox(struct mailname *np)
        char buffer[BUFSIZ];
        struct mailname *mp;
        static char *am = NULL;
-       static struct mailname mq={NULL};
+       static struct mailname mq;
 
        /*
        ** If this is the first call, initialize
index 69797ad..321c5f9 100644 (file)
--- a/uip/mhl.c
+++ b/uip/mhl.c
@@ -105,11 +105,11 @@ static struct mcomp *fmthd = NULL;
 static struct mcomp *fmttl = NULL;
 
 static struct mcomp global = {
-       NULL, NULL, "", NULL, NULL, 0, -1, 80, -1, 0, 0
+       NULL, NULL, NULL, NULL, NULL, 0, -1, 80, -1, 0, NULL
 };
 
 static struct mcomp holder = {
-       NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NOCOMPONENT, 0
+       NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NOCOMPONENT, NULL
 };
 
 struct pair {
index 07ec48c..2c14224 100644 (file)
@@ -101,7 +101,7 @@ static int dftype=0;
 static char *badaddrs = NULL;
 static char *dfhost = NULL;
 
-static struct mailname mq = { NULL };
+static struct mailname mq;
 
 static struct format *fmt;