From e1a5f4cd31893572ec21c214dfbb19fa6527fbc2 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Tue, 25 Apr 2000 19:57:47 +0000 Subject: [PATCH] Shut up compiler about sigrdataset possibly being used before set in nxtvalidate(). The warning is bogus. --- lib/dns/validator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dns/validator.c b/lib/dns/validator.c index ade71fef3f..3124023b54 100644 --- a/lib/dns/validator.c +++ b/lib/dns/validator.c @@ -759,7 +759,7 @@ nxtvalidate(dns_validator_t *val, isc_boolean_t resume) { result == ISC_R_SUCCESS; result = dns_message_nextname(message, DNS_SECTION_AUTHORITY)) { - dns_rdataset_t *rdataset, *sigrdataset; + dns_rdataset_t *rdataset, *sigrdataset = NULL; name = NULL; dns_message_currentname(message, DNS_SECTION_AUTHORITY, &name);