mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-27 11:13:24 +02:00
misc-progs: Fix some more uninitialized variables.
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user