mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 04:52:05 -04:00
1624. [bug] zonemgr_putio() call should be locked. [RT# 11163]
This commit is contained in:
parent
cc32d38366
commit
8407fbc61d
2 changed files with 4 additions and 2 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,3 +1,5 @@
|
|||
1624. [bug] zonemgr_putio() call should be locked. [RT# 11163]
|
||||
|
||||
1623. [bug] A serial number of zero was being displayed in the
|
||||
"sending notifies" log message when also-notify was
|
||||
used. [RT #11177]
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: zone.c,v 1.413 2004/04/28 04:23:24 marka Exp $ */
|
||||
/* $Id: zone.c,v 1.414 2004/04/29 01:44:44 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -2388,10 +2388,10 @@ dump_done(void *arg, isc_result_t result) {
|
|||
|
||||
if (zone->dctx != NULL)
|
||||
dns_dumpctx_detach(&zone->dctx);
|
||||
zonemgr_putio(&zone->writeio);
|
||||
UNLOCK_ZONE(zone);
|
||||
if (again)
|
||||
(void)zone_dump(zone, ISC_FALSE);
|
||||
zonemgr_putio(&zone->writeio);
|
||||
dns_zone_idetach(&zone);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue