]> git.marmaro.de Git - mmh/commitdiff
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 4876d09fa1c473b82a8233a032916ca1ed1e8d09..e75908877882a8f353a5cad5b56bf5909f92a333 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 69797adb23e1b8cf647efe61f7f48498a6a267b1..321c5f989cde23edceaf994eeb9cd4a3b1d9d254 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 07ec48c0197532f4c74ffa7580f1dbd80096aa6d..2c14224af15ee243801c87090ad83dcb34813bda 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;