2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

978. [bug] dns_db_attachversion() had an invalid REQUIRE()

condition.
This commit is contained in:
Mark Andrews
2001-09-04 12:17:13 +00:00
parent aa7638fce5
commit e8d86192fc
2 changed files with 6 additions and 3 deletions

View File

@@ -1,6 +1,9 @@
978. [bug] dns_db_attachversion() had an invalid REQUIRE()
condition.
977. [bug] Improve "not at top of zone" error message.
976. [func] named-checkconf will now test load master zones
976. [func] named-checkconf can now test load master zones
(named-checkconf -z). [RT #1468]
975. [bug] "max-cache-size default;" as a view option

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: db.c,v 1.69 2001/07/24 05:23:38 mayer Exp $ */
/* $Id: db.c,v 1.70 2001/09/04 12:17:13 marka Exp $ */
/***
*** Imports
@@ -389,7 +389,7 @@ dns_db_attachversion(dns_db_t *db, dns_dbversion_t *source,
REQUIRE(DNS_DB_VALID(db));
REQUIRE((db->attributes & DNS_DBATTR_CACHE) == 0);
REQUIRE(source != NULL);
REQUIRE(targetp != NULL && *targetp != NULL);
REQUIRE(targetp != NULL && *targetp == NULL);
(db->methods->attachversion)(db, source, targetp);