getdata.c: initialize variables to have safe values

Primarily to get rid of following warning.

getdata.c:63:26: warning: 'macstring' may be used uninitialized in this function
getdata.c:66:20: warning: 'macaddr_p' may be used uninitialized in this function

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2011-03-19 11:55:47 +01:00
parent e219f3f722
commit faf892114d

View file

@ -60,10 +60,10 @@ extern char *malloc();
int parse_leases(void) int parse_leases(void)
{ {
FILE *dhcpd_leases; FILE *dhcpd_leases;
char *line, *ipstring, *macstring; char *line, *ipstring, *macstring = NULL;
struct in_addr inp; struct in_addr inp;
struct stat lease_file_stats; struct stat lease_file_stats;
struct macaddr_t *macaddr_p; struct macaddr_t *macaddr_p = NULL;
unsigned long leasesmallocsize; unsigned long leasesmallocsize;
unsigned long touchesmallocsize; unsigned long touchesmallocsize;
unsigned long backupsmallocsize; unsigned long backupsmallocsize;