mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-14 22:53:34 -04:00
Shut up compiler about sigrdataset possibly being used before set in
nxtvalidate(). The warning is bogus.
This commit is contained in:
parent
7da5c63dc0
commit
e1a5f4cd31
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue