mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-15 01:40:05 -04:00
1645. [bug] named could trigger a REQUIRE failure if multiple
masters with keys are specified.
This commit is contained in:
parent
738bffe2ee
commit
7e2c0c16d6
2 changed files with 6 additions and 1 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
1645. [bug] named could trigger a REQUIRE failure if multiple
|
||||
masters with keys are specified.
|
||||
|
||||
1644. [placeholder] rt11436
|
||||
|
||||
1643. [bug] dns_db_closeversion() could leak memory / node
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: zone.c,v 1.414 2004/04/29 01:44:44 marka Exp $ */
|
||||
/* $Id: zone.c,v 1.415 2004/05/28 23:53:46 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -3990,6 +3990,8 @@ soa_query(isc_task_t *task, isc_event_t *event) {
|
|||
return;
|
||||
|
||||
skip_master:
|
||||
if (key != NULL)
|
||||
dns_tsigkey_detach(&key);
|
||||
zone->curmaster++;
|
||||
if (zone->curmaster < zone->masterscnt)
|
||||
goto again;
|
||||
|
|
|
|||
Loading…
Reference in a new issue