From: Mark Andrews Date: Thu, 23 Jun 2016 02:50:47 +0000 (+1000) Subject: complete the NULL pointer fixes X-Git-Tag: v9.11.0b1~26 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=5ba7394a4fe9bc08be7c2d1bd2274b8c1a2fea1d;p=thirdparty%2Fbind9.git complete the NULL pointer fixes --- diff --git a/lib/dns/dnstap.c b/lib/dns/dnstap.c index 072735b3112..b475174e330 100644 --- a/lib/dns/dnstap.c +++ b/lib/dns/dnstap.c @@ -339,7 +339,7 @@ destroy(dns_dtenv_t *env) { void dns_dt_detach(dns_dtenv_t **envp) { unsigned int refs; - dns_dtenv_t *env = *envp; + dns_dtenv_t *env; REQUIRE(envp != NULL && VALID_DTENV(*envp));