mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-06 01:35:41 -04:00
980. [bug] Incoming zone transfers restarting after an error
could trigger an assertion failure. [RT #1692]
This commit is contained in:
parent
3f538ef15c
commit
aa6e560fbd
2 changed files with 8 additions and 2 deletions
4
CHANGES
4
CHANGES
|
|
@ -1,4 +1,8 @@
|
|||
|
||||
980. [bug] Incoming zone transfers restarting after an error
|
||||
could trigger an assertion failure. [RT #1692]
|
||||
|
||||
|
||||
--- 9.2.0rc2 released ---
|
||||
|
||||
978. [bug] dns_db_attachversion() had an invalid REQUIRE()
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: xfrin.c,v 1.124 2001/08/08 22:54:46 gson Exp $ */
|
||||
/* $Id: xfrin.c,v 1.124.2.1 2001/09/06 00:23:19 marka 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