mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 04:02:04 -04:00
980. [bug] Incoming zone transfers restarting after an error
could trigger an assertion failure. [RT #1692]
This commit is contained in:
parent
ed29aefe31
commit
847169dab2
2 changed files with 8 additions and 2 deletions
4
CHANGES
4
CHANGES
|
|
@ -1,3 +1,7 @@
|
|||
|
||||
980. [bug] Incoming zone transfers restarting after an error
|
||||
could trigger an assertion failure. [RT #1692]
|
||||
|
||||
979. [func] Incremental master file dumping. dns_master_dumpinc(),
|
||||
dns_master_dumptostreaminc(), dns_dumpctx_attach(),
|
||||
dns_dumpctx_detach(), dns_dumpctx_cancel(),
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: xfrin.c,v 1.125 2001/08/30 05:12:39 marka Exp $ */
|
||||
/* $Id: xfrin.c,v 1.126 2001/09/05 23:02:28 gson Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -647,8 +647,10 @@ xfrin_reset(dns_xfrin_ctx_t *xfr) {
|
|||
if (xfr->ixfr.journal != NULL)
|
||||
dns_journal_destroy(&xfr->ixfr.journal);
|
||||
|
||||
if (xfr->axfr.add_private != NULL)
|
||||
if (xfr->axfr.add_private != NULL) {
|
||||
(void)dns_db_endload(xfr->db, &xfr->axfr.add_private);
|
||||
xfr->axfr.add_func = NULL;
|
||||
}
|
||||
|
||||
if (xfr->tcpmsg_valid) {
|
||||
dns_tcpmsg_invalidate(&xfr->tcpmsg);
|
||||
|
|
|
|||
Loading…
Reference in a new issue