From: Evan Hunt Date: Fri, 7 Jan 2011 00:53:18 +0000 (+0000) Subject: Initialize a pointer to NULL in order to silence a compiler warning. X-Git-Tag: v9.7.3rc1~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3207a16d0d964287a14237a2eb3d035f2507838b;p=thirdparty%2Fbind9.git Initialize a pointer to NULL in order to silence a compiler warning. Committing without review because the change is trivial. --- diff --git a/bin/named/server.c b/bin/named/server.c index 332cb8d1396..fa5fcabdff4 100644 --- a/bin/named/server.c +++ b/bin/named/server.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: server.c,v 1.556.8.32 2010/12/09 01:05:28 marka Exp $ */ +/* $Id: server.c,v 1.556.8.33 2011/01/07 00:53:18 each Exp $ */ /*! \file */ @@ -6893,7 +6893,7 @@ ns_server_del_zone(ns_server_t *server, char *args) { /* Rewrite zone list */ result = isc_stdio_open(filename, "r", &ifp); if (ifp != NULL && result == ISC_R_SUCCESS) { - char *found = NULL, *p; + char *found = NULL, *p = NULL; size_t n; /* Create a temporary file */