]> git.sur5r.net Git - bacula/bacula/commitdiff
Set daemon name and host name to zero
authorKern Sibbald <kern@sibbald.com>
Sun, 24 Oct 2010 18:43:15 +0000 (20:43 +0200)
committerKern Sibbald <kern@sibbald.com>
Thu, 11 Nov 2010 07:51:06 +0000 (08:51 +0100)
bacula/src/lib/message.c

index d13a079ca15c81e646dcd5db6aaca0d2d09e98be..e1d1dceccbd01f8f3664c9b946e7ec1e457cfdc5 100644 (file)
@@ -58,8 +58,8 @@ utime_t daemon_start_time = 0;        /* Daemon start time */
 const char *version = VERSION " (" BDATE ")";
 const char *dist_name = DISTNAME " " DISTVER;
 const int beef = BEEF;
-char my_name[30];                     /* daemon name is stored here */
-char host_name[50];                   /* host machine name */
+char my_name[30] = {0};               /* daemon name is stored here */
+char host_name[50] = {0};             /* host machine name */
 char *exepath = (char *)NULL;
 char *exename = (char *)NULL;
 int console_msg_pending = false;