Mute some warnings on uninitialized variables.
The code does the right thing, but the compiler is unable to figure it out. All paths that use that variable use the same invariant.
This commit is contained in:
parent
0db0a6763d
commit
14b790b0cf
@ -67,7 +67,7 @@ int
|
||||
main(int argc, char *argv[])
|
||||
{
|
||||
char hostname[MAXHOSTNAMELEN];
|
||||
struct passwd *pwd;
|
||||
struct passwd *pwd = NULL; /* Keep compiler happy. */
|
||||
int o, pam_err;
|
||||
uid_t uid;
|
||||
|
||||
|
@ -496,8 +496,8 @@ printaddr(int af, struct sockaddr_storage *ss)
|
||||
{
|
||||
char addrstr[INET6_ADDRSTRLEN] = { '\0', '\0' };
|
||||
struct sockaddr_un *sun;
|
||||
void *addr;
|
||||
int off, port;
|
||||
void *addr = NULL; /* Keep compiler happy. */
|
||||
int off, port = 0;
|
||||
|
||||
switch (af) {
|
||||
case AF_INET:
|
||||
|
Loading…
Reference in New Issue
Block a user