misc-progs: Fix some more uninitialized variables.

This commit is contained in:
Michael Tremer
2012-11-26 17:40:14 +01:00
parent 6bd5e3144c
commit 95c26b2485

View File

@@ -41,11 +41,11 @@ void exithandler(void)
int main(int argc, char *argv[])
{
int fdpid;
char hostname[STRING_SIZE];
char hostname[STRING_SIZE] = "";
char domainname[STRING_SIZE] = "";
char gateway[STRING_SIZE] = "";
char buffer[STRING_SIZE];
char address[STRING_SIZE];
char address[STRING_SIZE] = "";
char *active, *ip, *host, *domain;
int pid;