From cd3281f62d004695021d7a432ece42ff65a0e43f Mon Sep 17 00:00:00 2001 From: nick Date: Wed, 30 Oct 2013 22:44:15 +0000 Subject: [PATCH] acl: Make some compilers happy --- src/acl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/acl.c b/src/acl.c index f47a35d..eb605a9 100644 --- a/src/acl.c +++ b/src/acl.c @@ -31,7 +31,7 @@ static int is_included_in_acl(int list_length, struct ip_and_mask (*list)[], uni for (i=0; i < list_length; i++) { struct ip_and_mask *entry = &(*list)[i]; int testbits; - unsigned char *raw_address1, *raw_address2; + unsigned char *raw_address1 = NULL, *raw_address2 = NULL; debug("checking acl entry %d (%d/%d)", i, test->generic.sa_family, entry->ip.family);