2869. [bug] Fix arguments to dns_keytable_findnextkeynode() call.

[RT #20877]
This commit is contained in:
Mark Andrews
2010-09-03 02:55:18 +00:00
parent 5cab9cc0ce
commit 25d78ece28
2 changed files with 6 additions and 2 deletions

View File

@@ -32,6 +32,9 @@
2890. [bug] Handle the introduction of new trusted-keys and
DS, DLV RRsets better. [RT #21097]
2869. [bug] Fix arguments to dns_keytable_findnextkeynode() call.
[RT #20877]
--- 9.6-ESV-R1 released ---
2876. [bug] Named could return SERVFAIL for negative responses

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: validator.c,v 1.164.12.11.10.5 2010/06/26 00:02:45 marka Exp $ */
/* $Id: validator.c,v 1.164.12.11.10.6 2010/09/03 02:55:18 marka Exp $ */
#include <config.h>
@@ -2203,7 +2203,7 @@ validatezonekey(dns_validator_t *val) {
result == ISC_R_SUCCESS;
result = dns_rdataset_next(val->event->sigrdataset))
{
dns_keynode_t *keynode = NULL, *nextnode = NULL;
dns_keynode_t *keynode = NULL;
dns_fixedname_t fixed;
dns_name_t *found;
@@ -2244,6 +2244,7 @@ validatezonekey(dns_validator_t *val) {
result == ISC_R_SUCCESS)
atsep = ISC_TRUE;
while (result == ISC_R_SUCCESS) {
dns_keynode_t *nextnode = NULL;
dstkey = dns_keynode_key(keynode);
result = verify(val, dstkey, &sigrdata,
sig.keyid);